Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 2.67 KB

File metadata and controls

40 lines (29 loc) · 2.67 KB

Test

Test Attributes

This group describes attributes specific to software tests.

Attribute Type Description Examples Stability
test.case.name string The fully qualified human readable name of the test case. org.example.TestCase1.test1; example/tests/TestCase1.test1; ExampleTestCase1_test1 Experimental
test.case.result.status string The status of the actual test case result from test execution. pass; fail Experimental
test.suite.name string The human readable name of a test suite. TestSuite1 Experimental
test.suite.run.status string The status of the test suite run. success; failure; skipped; aborted; timed_out; in_progress Experimental

test.case.result.status has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

Value Description Stability
fail fail Experimental
pass pass Experimental

test.suite.run.status has the following list of well-known values. If one of them applies, then the respective value MUST be used; otherwise, a custom value MAY be used.

Value Description Stability
aborted aborted Experimental
failure failure Experimental
in_progress in_progress Experimental
skipped skipped Experimental
success success Experimental
timed_out timed_out Experimental