testing - IntelliJ - rerunning part of a testcase -
let's have testcase
testsomething testa testb testc ...
if run "testsomething", "testa", "testb", ... run in sequential order. unfortunately, that's falsifying statistics (time run each individual test) due caching.
if select single testcase, say, "testb" , re-run one, lose information other tests result "testsomething"-run thrown away , "testb" displayed. there way prevent happening? i.e. keep displayed , update results "testb"?
no, there no way update results of single test in test tree. can pin entire tab results of executing testsomething
(right-click on tab header , select "pin tab" context menu) , run testb
again - results displayed in separate tab , you'll still have access results of testsomething
.