GoLand 2024.1 Help

Explore test results

While the tests are running in GoLand, 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.

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.

The test results toolbar located above the list of test results allows you to show and hide successful and ignored tests, display how much time it took to run each test, export, import, and sort test results.

Test results shown on the Test Runner tab of the Run tool window

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.

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.

Track test execution

In GoLand, you can monitor execution of the current test. If a test suite contains multiple tests, the list of tests expands to show test methods as they run one by one.

  • To monitor test execution, click  the More button More on the toolbar and navigate to Test Runner Settings | Track Running Test. Ensure that Track Running Test is selected.

    Track test execution

Manage test results

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

    Options for managing test results
    • Track Running Test: monitor execution of the current test.

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

    • Suites Always on Top: always place test nodes on top of the list when you apply sorting.

    • 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.

    • 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.

View statistics

  • To view the execution time for tests, click the More button on the test results toolbar, then select Test Runner Settings and enable the Show Inline Statistics option.

    Test runner in the Run tool window

Jump to test declaration

  • Select the necessary test from the list on the Test Runner tab and press F4.

View results of previous tests

GoLand 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

    You can also export test results to a file if you want to keep them or share with your team.

Export and import test results

Export test results to a file

  1. Click The More button on the test results toolbar, then click Export Test Results.

  2. Select the format in which you want to save the file:

    • HTML: generate an HTML file from a pre-defined template.

    • XML: use this format if you want to import this file later to GoLand.

    • Custom, apply XSL template: use your custom XSL template to generate an HTML file from the raw XML output. Click Browse button next to this option and select the *.xsl code style definition file.

  3. Specify the name of the output file and its location.

  4. If you want to open the file in your browser after you export it, select the Open exported file in browser checkbox. Click OK.

    Export test results to a file

Import test results

  1. To load a previously exported file, click Import Tests from File on the test results toolbar.

    If you haven't run any tests yet, and the tool window with the test results toolbar is not available, press Ctrl+Shift+A and type Import Tests from File.

  2. In the file system dialog that opens, select the .xml file with test results and click Open.

    Import test results
Last modified: 15 April 2024