Running test cases in batch mode is achieved by using MSBuild test tasks.
This is useful in CI Tools like Jenkins since they can read these XML files and show test case reports containing failed assertions.
Anytime you run tests (unit or UI) using MSBuild tasks, you can add an extra task to see test results in XML JUnit format:
<JUnitExportTests JUnitTestFilePath="$(JUnitTestFilePath)">
<Output TaskParameter="JUnitTestFilePath" PropertyName="JUnitTestFilePathOutput" />
</JUnitExportTests>
This will create an XML file with the name TestResultJUnityyyy-dd-mm--hh-mm-ss.xml containing test results.
Note: This task needs to run over a previously opened KB after running test cases.
This example uses GXtest.msbuild file (usually located on GeneXus IDE root folder).
Before starting, make sure you install the Junit reporting plugin in Jenkins.
Add JUnitTestFilePath parameter in MSBuild:
By default, if a test fails, the RunTests task will be marked as failed as well. To prevent be marked as failed and process test results, the additional parameter /p:AllowFailedTests="true" must be set on this step.
Make sure that the Jenkins' user has writing privileges over the folder you want to store the test results.
Use the JUnit plugin pointing to the previously used folder (in the example it is using WORKSPACE Jenkins folder):
You will start viewing Test results :
and trends...