SWATT_DESCRIPTION("info") |
This keyword adds a tag in the log file that will create a description in the test report |
SWATT_TEST_ENVIRONMENT("info") |
This keyword adds a tag in the log file that will create an execution environment and a test environment in the test report |
SWATT_TRACE("info") |
Logs the traceability info (requirement ID, design element ID, architecture ID or change management) (in the log which is late transferred in the report and tractability reports). |
SWATT_MATURITY("level") |
This keyword adds a tag in the log to indicate the maturity level of the test |
SWATT_SKIP_REASON("reason") |
This keyword can be mixed with C code, when is executed marks the test as skipped and logs the reason why the test is skipped. |
SWATT_SKIP_ALL_TESTS("reason") |
This keyword can be mixed with C code, and shall be used from the INIT or another helper function called from INIT |
SWATT_FATAL_ERROR("message") |
Creates a fatal error (message display followed by the crash of the test script) |
SWATT_LOG("message") |
Prints the message (message... is the same format as for printf) to the log file only. |
SWATT_TRACKED_CALL(function()) |
Allows backward propagation of the info regarding the failure of a function call |
SWATT_TEST_PRECONDITION("message") |
This keyword adds a precondition tag in the log file with the message from parameter which is used for CSV export for DOORS. |
SWATT_TEST_PROCEDURE("message") |
This keyword adds a procedure tag in the log file with the message from parameter which is used for CSV export for DOORS |
SWATT_TEST_POSTCONDITION("message") |
This keyword adds a postcondition tag in the log file with the message from parameter which is used for CSV export for DOORS |
SWATT_TEST_EXPECTED_RESULT("message") |
This keyword adds an expected_result tag in the log file with the message from parameter which is used for CSV export for DOORS |
SWATT_TEST_COMMENT("message") |
This increments the numbering for Test Procedure and Test Expected Result. |