RustRover 2024.1 Help

Explore test results

While the tests are running in RustRover, the test execution is shown in the Run tool window on a tab for that run configuration. When the test execution is finished, you can look at the test results in that tab.

Test runner

The console on the right shows the output of the current test session. It allows you to see the detailed information on the test execution and why your tests failed or were ignored.

Next to each test on the run configuration tab, the IDE shows the test status icon:

Icon

Description

Test error

Test error. This status is assigned to tests that caused an exception from the tested source code.

Test failed

Test failed. If at least one child test fails, all its parent tests are marked as failed.

Test ignored

Test ignored.

Test in progress

Test in progress.

Test passed

Test passed successfully.

Terminated

Test terminated. This status is assigned to tests that were stopped.

If at least one test receives this status, then all unfinished tests and their parent tests are marked as terminated.

The Test Runner toolbar on the top allows you to sort and filter test results, define output format, jump to a test's declaration and view test history. Here you can also stop or rerun the test session in one click.

The Test Runner toolbar

Sort and filter test results

Use the following options on the test results toolbar if you want to focus only on the failed tests or if you want to reorganize test results.

  • Disable the the Show Passed button Show Passed option to hide successful tests.

  • Disable the the Show Ignored button Show Ignored option to hide ignored tests.

  • Click the Sorting Options button and select how you want to sort the test results:

    • Suites Always on Top – click to display suites on top.

    • Sort Alphabetically – click to sort test results alphabetically.

    • Sort by Duration – click to place test nodes on top of the list.

Manage test results

  • Click the More button on the test results toolbar then select Test Runner Settings and enable the following options:

    • Track Running Test: monitor execution of the current test.

    • Show Inline Statistics: view the execution time for tests.

    • Scroll to Stack Trace: if a test produced a lot of output (for example, logging) before failing, this option automatically scrolls the output console to the assertion failure once you select the test on the run configuration tab.

    • Open Source at Exception: if you double-click a failed test method on the run configuration tab with this option on, the editor will scroll to the line on which the exception was thrown (instead of scrolling to the test method declaration).

    • Navigate with Single Click: open the code for the selected test automatically in the editor.

    • Set Auto Test Delay: point to this node to reveal the list of available delays between file saving and rerunning tests. The selected value gets the check mark.

    • Select First Failed Test When Finished: automatically select the first failed test in the list upon completing the test session.

    Test runner settings

Jump to test declaration

  • Select the necessary test from the list on the Test Runner tab and press F4. Alternatively, right-click the test and select Jump to Source.

    Jump to test declaration

View assertEquals difference

If a unit test contains string assertEquals failures, the IDE allows you to compare the strings and view the differences.

  • Right-click the necessary test and select View assertEquals Difference from the context menu.

    You will be able to compare strings in the dedicated Diff Viewer.

View results of previous tests

RustRover automatically saves results of the last 10 test sessions. To open the list of recent test sessions:

  • Click the Test History icon on the test results toolbar and select the necessary test session from the list.

    For each test session, the list displays the run configuration name and a timestamp:

    Viewing results of previous tests
Last modified: 26 May 2024