Testmanager, How is it possible to sort testcases within testsuite?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear ladies and gentlemen,
I´m worjing with the TestManager and I would like to change the sequnce of the testcases within a testsuite. Is it possible to move them via track and drop?
Thank you very much and best regards
Damian Kreis
0 Kommentare
Antworten (1)
Abhisek Pradhan
am 18 Sep. 2019
Test case can be rearragned inside a test suite. Following code sorts the test cases in descending and random order.
s = matlab.unittest.TestSuite.fromFolder(pwd)
s = s(end:-1:1)
s.run % run in descending order
s = s(randperm(numel(s)))
s.run % run in random order
But as testing should be independent of the order of test cases. So, it doesn’t matter in which order one has the test cases.
Siehe auch
Kategorien
Mehr zu Build MATLAB Interface to C++ Library finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!