Aziza Abdelsalam
Aziza Abdelsalam
_another point i didn't mention above_: is it supposed to be an issue if the test environment is not only JUnit4 where in our maven project we are based on...
ok that is what i did. Kindly check this simple test case i depend on to try your tool with configuring Logging(logback.xml) on debug level for the JUnitPerf to show...
sorry about my misunderstood i configured rhe package on tracking level in log and based on the real test case i have as follow : ``` package de.psi.metals.sp.met.global.pam.test.performance; import javax.inject.Inject;...
yes without @Rule the test is passed and this is the log trace in this case ``` C:\Tools\Java\jdk-11.0.17+8\bin\java.exe -ea -Didea.test.cyclic.buffer.size=1048576 "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2021.3.3\lib\idea_rt.jar=65040:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition...
and regarding @After is already exist in BusinessComponentTestBase as below: ``` @After public void tearDown() { if (this.tx.isActive()) { this.tx.rollback(); } this.entityManager.clear(); this.cleanUpDb(); } ``` and it is resposible to...
> So when the `@Rule` is in place, the `before`, `test` and `after` will be executed in a loop 2000 times (ie `totalExecutions` number of times) > > Is there...
i have tried this way: ``` @Slf4j @RunWith(CdiTestRunner.class) public class RawDataSet2PamWriteTestPerformance { @Rule public JUnitPerfRule perfTestRule = new JUnitPerfRule(true); @Inject public StorageAppService service; @Inject public PamDDService pamDDService; @Inject private PamMvDataSetRepositoryIf...
Ah, just i didn't go through it Thanks