jeudi 23 avril 2015

IntelliJ - rerunning part of a testcase

Let's say I have a testcase

testSomething
    testA
    testB
    testC
    ...

If I run "testSomething", then "testA", "testB", ... are run in sequential order. Unfortunately, that's falsifying the statistics (time to run each individual test) due to caching.

If I select a single testcase, say, "testB" and re-run that one, I lose all information about the other tests as the result from the "testSomething"-run is thrown away and only "testB" is displayed. Is there any way to prevent that from happening? I.e. keep everything displayed and just update the results for "testB"?

Aucun commentaire:

Enregistrer un commentaire