I have a maven2 project where I am manually executing some testing in the integration-test phase using the exec plugin to call a vbscript (it's Windows specific testing). This is automated by Jenkins. I'd like to hook the results of these tests into the error reporting infrastructure (surefire/failsafe), and possibly even provide some details on the test failures before failing the build in the post-integration-test phase (preferably through the standard failsafe mechanism). Can I create my own test results file somehow? Are there any details on the format? Is there a better way?
Clarification, I'm after the following things:
- Ability to add tests to the infrastructure so Jenkins will see the number of tests run manually.
- Ability to mark specific tests as pass or fail and have the build marked as "unstable" under jenkins appropriately.
- I do not want immediate failure of the build when the test fails (this leaves the application running). I want to either mark it only as "unstable" or mark it as failed in the "verify" phase.