RubyMine 4.0.0 Web Help

3.0+

The Test Runner tab opens in the Run tool window when a testing session begins, and features the same toolbar buttons.


Click thumbnail to view larger image.

  1. The progress bar shows the percentage of tests executed so far.
  2. The color of the status bar indicates whether the tests have passed successfully. If at least one of the tests fails, the status bar turns red.
  3. The left-hand pane shows the tree view of all tests within the current run/debug configuration.
    • The root node represents the test case selected to run.
    • The nested nodes represent the hierarchy of test suites and test cases.
    • The leaf nodes represent the individual tests.
    The status of each test is indicated by an icon. Double-click a node to open the respective test class or test method in the editor.
  4. The testing toolbar provides controls that enable you to monitor the tests and analyze results. Some of the commands are duplicated on the context menus of the test tree nodes and the entries in the Statistics pane.
  5. The Output pane shows the output of the current test suit.
  6. The Statistics pane shows the list of executed tests with the time used for executing each test and the test result.

Run toolbar

Item Tooltip and Shortcut Description
rerun Rerun
Ctrl+F5Control F5
Click this button to rerun the current process.

Note

The process reruns always in the same console regardless of whether this console is pinned or not.

icon_toggleAutoTest Toggle auto-test If this button is pressed, the autotest-like runner is turned on. It means that the test in the current run configuration tab will automatically rerun on changing its source code. Otherwise, to rerun such test, you have to click the rerun button rerun.
stop Stop
Ctrl+F2Command F2
Click this button to terminate the current process externally by means of the standard mechanisms.
debug_layout Layout Click this button to choose a layout of the toolbars by selecting the desired option from the pop-up menu.
pin2 Pin When this button is pressed, the current tab will not be overwritten; instead, the results of the next command will be displayed in a new tab.
close Ctrl+Shift+F4Command Shift F4 Click this button to close the selected tab of the Run tool window and terminate the current process.
help F1F1 Click this button to show reference.

Testing toolbar

Item Tooltip
and Shortcut
Description
junitHidePassedIcon Hide Passed Press this button, to have RubyMine show only the failed tests or the tests that encountered problems in the left-hand pane. If this button is not pressed, all tests are displayed in the tree view.
4.0+sortAlphabetically Sort alphabetically Click this button to sort tests in alphabetical order.
expandAll.png collapseAll Expand All/Collapse All
Ctrl+Add Command Add or Ctrl+Equals Command EqualsCtrl+Subtract Command Subtract or Ctrl+Minus Command Minus
Click these buttons to have all nodes in the tree view of tests expanded.

Note

These buttons are only available if the tested application contains more than test case.

arrowUparrowDown Previous/Next Failed Test
Ctrl+Alt+UpCtrl Alt Up/Ctrl+Alt+DownCtrl Alt Down
Click this button to navigate between the failed tests.
exportToTextFile Export Test Results Click this button to have the results of the selected test saved in a file.
projectToolWindowSettingsIcon Click this cog button to access the context menu with the following options:
  • Track Running Test - select this option to monitor execution of the current test. If a test suite contains multiple tests, the tree view of tests expands to show sequential test methods, as they are executed.
  • Select First Failed Test When Finished - select this option to have the first failed test automatically selected in the tree view upon completing the tests.
  • Scroll to Stacktrace - select this option to have the console scroll to the beginning of the trace of the last failed test.
    If the option is not selected and you click the root node (the test package) in the tree view, the console will show the very beginning of the test.

    Tip

    This option is helpful when a test package contains multiple test classes and test methods. If some of the tests fail, you can scroll in the console to the beginning of a stack trace of an exception or assertion.

  • Autoscroll to Source - select this option to have the currently selected test in the tree view synchronized with the editor automatically.
  • Open Source at Exception - use this option to explore the results of a test that fails as an error, throwing an uncaught exception.
    If this option is selected and you double-click the failed test class or method in the tree view, the respective test class or method will open in the editor, with the caret placed at the line that caused the problem.
  • Show Statistics - select this option to have the Statistics pane opened, displaying a list of executed tests with the time used for executing each test and the test result.

Test status icons

Icon Description
testError Test error.
testFailed Test failed.
testIgnored
  • For rspec and cucumber this icon denotes pending test.
  • For Test::Unit this icon is not used.
testInProgress1 Test in progress.
testPassed Test passed successfully.
testPaused Test paused.
testTerminated Test terminated.
testNotRan Test not run.

Output pane

This pane shows output of each test, generated at runtime, including all the messages sent to the output stream, and the error messages. The following table shows the toolbar buttons and context menu commands available for the Output pane.

Item Keyboard Shortcut Description
arrowUp Up the Stack Trace
Ctrl+Alt+UpCtrl Alt Up
Click this button to navigate up in the stack trace and have the cursor jump to the corresponding location in the source code.
arrowDown Down the Stack Trace
Ctrl+Alt+DownCtrl Alt Down
Click this button to navigate down in the stack trace and have the cursor jump to the corresponding location in the source code.
icon_softWrap Use Soft Wraps Click this button to toggle the soft wrap mode of the output.
scrollToEnd Scroll to the end Click this button to navigate to the bottom of the stack trace and have the cursor jump to the corresponding location in the source code.
Clear All Choose this item on the context menu to have all messages for the selected test deleted.
Copy Content Ctrl+C Command C or Ctrl+Insert Command Insert Choose this item on the context menu to have the current contents of the Output pane placed to the Clipboard.
Compare with Clipboard Choose this item on the context menu to invoke theDifferences Viewer which shows the current contents of the Clipboard in the left-hand pane and the contents of the Output pane for the selected test in the right-hand pane. pane.

Statistics pane

This pane shows how long it took to execute a test suite and the number of passed and failed tests within it. You can have information in columns shown in the ascending or descending order by clicking the column headers.

To view statistics on each test separately, double click the test suite which contains the desired test. The pane shows a list of all the tests in the selected suit.

The Context menu commands are the same as for the tree view of tests.

Column name Description
Test Name of the test class or test method.
Time elapsed The number of seconds spent to to execute this test.
Results This column shows summary information about the test execution results. For individual tests, the column shows the pass or fail status. For test case or test suites, the column shows the number of failed and passed tests within it.

Context menu commands

Command Keyboard shortcut Description
Jump to Source F4F4 Choose this command to move the focus to the editor, to the definition of a test class, or test method.

See Also

Procedures:

Reference:

Web Resources: