|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<testsuites> |
| 3 | + <testsuite name="com.example.AllTests" tests="10" failures="1" errors="1" skipped="1" time="1.550"> |
| 4 | + <testsuite name="com.example.UnitTests" tests="6" failures="1" errors="1" skipped="1" time="0.350"> |
| 5 | + <testcase name="testAddition" classname="com.example.UnitTests" time="0.015"/> |
| 6 | + <testcase name="testSubtraction" classname="com.example.UnitTests" time="0.010"/> |
| 7 | + <testcase name="testMultiplication" classname="com.example.UnitTests" time="0.020"> |
| 8 | + <failure message="Expected 10 but was 9" type="AssertionError"> |
| 9 | + Stack trace details... |
| 10 | + </failure> |
| 11 | + </testcase> |
| 12 | + <testcase name="testDivision" classname="com.example.UnitTests" time="0.000"> |
| 13 | + <skipped/> |
| 14 | + </testcase> |
| 15 | + <testcase name="testModulo" classname="com.example.UnitTests" time="0.005"> |
| 16 | + <error message="NullPointerException occurred" type="java.lang.NullPointerException"> |
| 17 | + Stack trace details... |
| 18 | + </error> |
| 19 | + </testcase> |
| 20 | + <testcase name="testSquareRoot" classname="com.example.UnitTests" time="0.300"/> |
| 21 | + <system-out><![CDATA[Standard output logs for UnitTests]]></system-out> |
| 22 | + <system-err><![CDATA[Standard error logs for UnitTests]]></system-err> |
| 23 | + </testsuite> |
| 24 | + <testsuite name="com.example.IntegrationTests" tests="4" failures="0" errors="0" skipped="0" time="1.200"> |
| 25 | + <testcase name="testUserLogin" classname="com.example.IntegrationTests" time="0.400"/> |
| 26 | + <testcase name="testUserRegistration" classname="com.example.IntegrationTests" time="0.300"/> |
| 27 | + <testcase name="testProductSearch" classname="com.example.IntegrationTests" time="0.200"/> |
| 28 | + <testcase name="testCheckoutProcess" classname="com.example.IntegrationTests" time="0.300"/> |
| 29 | + <system-out><![CDATA[Integration test logs...]]></system-out> |
| 30 | + <system-err><![CDATA[Integration test error logs...]]></system-err> |
| 31 | + </testsuite> |
| 32 | + <system-out><![CDATA[Standard output logs for AllTests suite]]></system-out> |
| 33 | + <system-err><![CDATA[Standard error logs for AllTests suite]]></system-err> |
| 34 | + </testsuite> |
| 35 | +</testsuites> |
| 36 | + |
0 commit comments