Re: best way to get execution time for test cases

2018-03-01 Thread Simon Richter
Hi, > i'm looking for a way to get execution times for test cases (PhantomJs > tests to be precise, if that matters). I've adapted my test framework to generate a JUnit compatible output file, and then used the JUnit plugin to parse it. Try with an empty project and an example report.xml to see

best way to get execution time for test cases

2018-03-01 Thread Steffen Kromm
Hey all, i'm looking for a way to get execution times for test cases (PhantomJs tests to be precise, if that matters). E.g. (Test X, Passed, 17ms), for each Test I thought about parsing the Build-Log output, but the log doesn't contain times for failed tests. How should i handle this problem