Raja Nagendra Kumar
Raja Nagendra Kumar
give elastic/elastic to all
But this example expects @ExtendWith(JUnitPerfInterceptor.class) to be added to every testcase.. is it a must.. as we have 100s of TestCases.. don't wish to keep adding to each.. Is it...
Wow, 1.30.x approach is far more similar.. thank you for making it better.. Now I have the code as ``` package com.tejasoft.tests.ju.ju5.ut.perf.noconnor; import com.github.noconnor.junitperf.JUnitPerfReportingConfig; import com.github.noconnor.junitperf.JUnitPerfTest; import com.github.noconnor.junitperf.JUnitPerfTestActiveConfig; import com.github.noconnor.junitperf.JUnitPerfTestRequirement;...
``` package com.tejasoft.edu.dsa.bbraces.tests.ju.ju5.ut.suites; import com.tejasoft.edu.dsa.bbraces.tests.ju.ju5.ut.TestBBOrdered; import com.tejasoft.edu.dsa.bbraces.tests.ju.ju5.ut.TestBBRandom; import org.junit.platform.suite.api.IncludeTags; import org.junit.platform.suite.api.SelectClasses; import org.junit.platform.suite.api.Suite; @Suite @SelectClasses({TestBBOrdered.class, TestBBRandom.class}) //@SelectPackages("com.tejasoft.dsa.bbraces.**") @IncludeTags({"slow", "integration"}) public final class TestBBSuites { } ``` ``` package com.tejasoft.tests.ju.ju5.ut.suites.learn; import...
I just wish to run the normal junit suite 100 times.. without having to change the usual junit test cases in any way for performance testing... Is every normal junit...