JUnitPerf icon indicating copy to clipboard operation
JUnitPerf copied to clipboard

API performance testing framework built using JUnit

Results 19 JUnitPerf issues
Sort by recently updated
recently updated
newest added

Hello noconnor, When JUnitPerfRule is used together with Mockito (annotation @RunWith(MockitoJUnitRunner.class)), the mock objects defined on the test are not used anymore, and real objects are used instead. It's like...

Add some logging and logback configuration

i transfer the following JUniTest case (snippet of the code) to the performance test using your JUnitPerf library (version 1.34) as follow: public class RawDataSet2PamWritePerformanceTest { //specifies that the performance...

when I run my unit tests without JUnitPerf suite the total count is 129 excluding ignored ones When I include JUnitPerf suite with totalExecutions=1 Junit dashboard shows Junit perf dashboard...

In my tests I have seen no out of memory but CPU has gone 100% multiple times and most times beyond 50% CPU Maybe instead of using the fall loop...

i upload the 1.34 library on my maven project. and start using the library feature and and i am trying to optimize the performance targets to fit my requirements. one...

![image](https://github.com/noconnor/JUnitPerf/assets/332234/52d1c7b6-42e5-4521-a85a-e7b1b06f6016) ![image](https://github.com/noconnor/JUnitPerf/assets/332234/0321cf16-0471-4147-a20f-fb7a2fdd89f5) I have 1000 as totalExecutions, however, innovations shows slightly around > 1000 mody times etc.. I know this not a bug, was looking to capture such a difference...

``` dBLogService.log( "Withdrawal of 500.0 made from account 456" ); -> at com.tejasoft.edu.bank.tests.doubles.mocks.TestBAWMock.testWithdrawWithSufficientBalanceAndAccess(TestBAWMock.java:66) Actually, there were zero interactions with this mock. at com.tejasoft.edu.bank.tests.doubles.mocks.TestBAWMock.testWithdrawWithSufficientBalanceAndAccess(TestBAWMock.java:66) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ... 6 common frames omitted...

1. Downloaded CSV can contain full details of the test case including column header to say test attempt and time taken 2. Unable to understand what exactly is the error...

``` package com.tejasoft.tests.ju.ju5.ut.perf.noconnor.utils; import com.github.noconnor.junitperf.JUnitPerfTest; import com.github.noconnor.junitperf.JUnitPerfTestRequirement; import com.github.noconnor.junitperf.reporting.providers.HtmlReportGenerator; import com.github.noconnor.junitperf.statistics.providers.DescriptiveStatisticsCalculator; import org.junit.jupiter.api.extension.ExtensionContext; import java.lang.annotation.Annotation; import java.util.Collections; import static com.tejasoft.tests.ju.ju5.ut.perf.noconnor.utils.ReportingUtils.newHtmlReporter; public final class JUnitPerfInterceptorSuite extends com.github.noconnor.junitperf.JUnitPerfInterceptor { private static final...