noconnor

Results 38 comments of noconnor

The only way this is possible is if an error is thrown _after_ the [parallel evaluation completes](https://github.com/noconnor/JUnitPerf/blob/master/junitperf-junit5/src/main/java/com/github/noconnor/junitperf/JUnitPerfInterceptor.java#L126) If this is the case, it would mean the test ran successfully 10...

Its due to the fact that there are multiple threads (20 in this case) updating & reading the same evaluation count counter. `totalExecutions` is a [best effort target](https://github.com/noconnor/JUnitPerf/tree/master#test-configuration-options). To make...

`totalExecutions` is optional and **if** set the test will complete after at least `totalExecutions` but may be slightly more than the target as you have already seen. `durationMs` has a...

So the `junitperf` framework does not discover the test, the `junit-platform-suite-engine` does test discovery. The `junit-platform-suite-engine` test driver then iterates over each test in the suite and for each test...

You may be hitting a memory limit somewhere trying to run that many tests. You could try adding a fixed window size for the [statistics calulator](https://github.com/noconnor/JUnitPerf#statistics): ``` @JUnitPerfTestActiveConfig public static...

`@RepeatedTest` does not allow for running parallel executions of the test in a thread pool, which is very useful when load testing API's. It would also not be possible to...

I'll add a note about CPU usage to the main readme page

The branch you're testing on is still a proof of concept as to how suite level annotation support _might_ be added. Suite level lifecycle hooks in junit5 seem to be...

Should be an example of @Suite usage [here](https://github.com/noconnor/JUnitPerf/blob/6e168c28bd7337f99e2a376aa4d3cf1f799f4efd/junit5-examples/src/test/java/com/github/noconnor/junitperf/examples/ExampleCommonReporter.java#L18)

I _think_ its possible with a small change to the [core library ](https://github.com/noconnor/JUnitPerf/pull/89)to achieve what you've described. If you had 100 test cases registered to a suite, * each test...