Raja Nagendra Kumar

Results 124 comments of Raja Nagendra Kumar

> You could also look at adding `@ExcludeClassNamePatterns` or `@ExcludePackages` to explicitly exclude `TestBBSuites` and `TestSuiteEx` from the perf test suite Even with 1.31.0 same error.. My PerfSuite is annotated...

I tried disabling these TestBBSuites and TestSuiteEx and also with exclude but the same error is seen always..

> This is not possible with this framework I am ok with PerfSuite alone annotated with `JUnitPerfTest` However this perfsuite would internally may include other JUnit Suites, as long as...

``` java.lang.AssertionError: Error threshold not achieved at com.github.noconnor.junitperf.statements.PerformanceEvaluationStatement.assertThat(PerformanceEvaluationStatement.java:113) at com.github.noconnor.junitperf.statements.PerformanceEvaluationStatement.assertThresholdsMet(PerformanceEvaluationStatement.java:95) at com.github.noconnor.junitperf.statements.PerformanceEvaluationStatement.runParallelEvaluation(PerformanceEvaluationStatement.java:75) at com.github.noconnor.junitperf.JUnitPerfInterceptor.interceptTestMethod(JUnitPerfInterceptor.java:119) ``` What does this mean, is it the default time to run all the tests.. etc.....

I have removed still the same error.. ``` 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; import org.junit.platform.suite.api.SelectPackages; import org.junit.platform.suite.api.Suite; import static com.tejasoft.tests.ju.ju5.ut.perf.noconnor.utils.ReportingUtils.newHtmlReporter; @Suite @SelectPackages("com.tejasoft") //@JUnitPerfTest(totalExecutions = 1000,...

![image](https://github.com/noconnor/JUnitPerf/assets/332234/fc071765-d77c-45e8-bc0c-86eaf1148863) this says 90% as errors, is it more right to say these are the tests that have failed to meet the performance timeline? or does it also include any...

> if this test requires an @beforeeach to be executed before each performance test invocation you'll need to update to 1.33.0 Any reason for such behaviors as I expect the...

> You can enable trace logging on `EvaluationTask` to identify the source of the errors. Thank You, this the way, I enabled logging, adding for others reference in future add...

when I say totalExecutions=2, should I not expect JUnit Dashboard to show total unit tests run as double the count of what is shown for totalExecutions=1?

>No, even though the junitperf framework will run your test multiple times in a loop, to the junit test framerwork thats just 1 execution of your tests. and >So the...