Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Also, please check our documentation for details on how Xray handles the JUnit status information, [here|https://docs.getxray.app/display/XRAY/Taking+advantage+of+JUnit+XML+reports#TakingadvantageofJUnitXMLreports-Status].

Code Block
titleJUnit failure and error example
(...)
        <testcase classname="ModuleIAmTesting" name="testIsNotStorming" time="1">
            <failure message="Test testIsNotStorming() failed!" type="failure">
                Another failure. Failure output, details, etc.
            </failure>
        </testcase>

        <testcase classname="ModuleIAmTesting" name="testCreatePlugin" time="2">
            <error message="Error while executing test testCreatePlugin()!" type="error">
                Unhandled catastrophic exception in ModuleIAmTesting.cpp at like 4420, details, etc.
            </error>
        </testcase>
(...)

...