Development

In today’s digital landscape, a website’s design is crucial in capturing users’ attention and keeping them engaged. CSS animations have become a…

I have Jenkins on localhost, configured test project, which is generating passed test:

@Test
public void aFastTest() {
System.out.println(“—- —- —-“);
Assert.assertTrue(true, “Test is true”);
}

Console output is OK in Jenkins:

Results :

Tests run: 1, Failures: 0, Errors: 0, Skipped: 0

For import to ALM I’m using https://wiki.jenkins-ci.org/display/JENKINS/HP+Application+Automation+Tools

In Jenkins Job configuration I have in Post-build Actions – Upload test result to ALM, set:

Testing result file: **/testng-results.xml

And finally my problem – in the end of Jenkins console log is:

INFO: ‘Upload test result to ALM’ Post Build Step is being invoked.
INFO: No Test Report found.
INFO: ‘Upload test result to ALM’ Completed.

I thought, the path to testing result file is wrong, so I copied it everywhere, in testng-results.xml is valid result, compared to examples on net…Anyone know why there is No Test Report found?

I have to design a test plan for an app and below is the requirement
Run a thread for 1 user for 55 minutes and in between after the thread starts I need to run another user after 30 minutes.
Can you give any suggestions on how can design and what kind of threadGroup can i use?
Update: I have two groups, the first group will start and run for 120 minutes and the second group of users will start after 30 minutes.

“Dark Horse” inherited some PHP code. They had a hundred lines to submit, but only sent in a dozen- which…