Navigate between test and test subject
In PyCharm, you can quickly navigate between a test and the test subject.
For language- and framework-specific guidelines, see Testing frameworks, Testing JavaScript, Testing Node.js.
Open a test class in the editor.
From the editor context menu, choose Go To | Test Subject or press CtrlShift0T.
The test subject for the current test class opens in the dedicated tab of the editor and gets the focus.
Open class in the editor. If you want to navigate from a method to its test, place the caret at this method.
From the editor context menu, choose Go To | Test or press CtrlShift0T.
note
If a test class doesn't exist, you will be prompted to create one as described in the Create tests section.
If more than one test is associated with the test subject, select the desired one from the list. The test for the current class opens in the dedicated tab of the editor and gets the focus.
warning
You cannot navigate between a test and its subject if you rename the test method.
Thanks for your feedback!