Raja Nagendra Kumar

Results 115 issues of Raja Nagendra Kumar

jazzer.instrument property not supporting reg-ex such as jazzer.instrument=com.tejasoft.*.oom.tests.TestOOMAnalyzer jazzer.instrument=com.tejasoft.**.TestOOMAnalyzer jazzer.instrument=**.TestOOM* only FQN is supported such as jazzer.instrument=com.tejasoft.edu.oom.tests.TestOOMAnalyzer or jazzer.instrument=com.tejasoft.edu.oom.tests.TestOOM* error it gives are jazzer.instrument=com.tejasoft.edu.oom.tests.TestOOMAnalyze

waiting for reporter

``` [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) on project jazzer-junit-example: Compilation failure: Compilation failure: [ERROR] /C:/temp/jazzer/examples/junit/src/test/java/com/example/MutatorFuzzTest.java:[42,34] cannot find symbol [ERROR] symbol: method invalidCorpusFilesPresent() [ERROR] location: class com.code_intelligence.jazzer.driver.FuzzTargetRunner [ERROR] /C:/temp/jazzer/examples/junit/src/test/java/com/example/MutatorFuzzTest.java:[43,36]...

``` package com.tejasoft.tests.ju.ju5.ut.learn.hamcrest.tests; import java.util.Objects; final class HMPerson { private final String name; private final int age; HMPerson(String name, int age) { this.name = name; this.age = age; } public...

@Test void testHasProperty() { HMPerson person = new HMPerson("John", 30); assertThat(person, hasProperty("name", equalTo("John"))); } FAILS when record HMPerson(String name, int age) {} Expected: hasProperty("name", "John") but: No property "name" java.lang.AssertionError:...

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...

![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...