|
53 | 53 | */ |
54 | 54 | typedef enum |
55 | 55 | { |
56 | | - UTASSERT_CASETYPE_NONE, /**< Reserved value, No messages should be used with this */ |
57 | | - UTASSERT_CASETYPE_ABORT, /**< Test sequence abort (major failure, cannot continue) */ |
58 | | - UTASSERT_CASETYPE_FAILURE, /**< Test case failure status messages */ |
59 | | - UTASSERT_CASETYPE_TSF, /**< Test Setup Failure (TSF) status messages */ |
60 | | - UTASSERT_CASETYPE_TTF, /**< Test Teardown Failure (TTF) status messages */ |
61 | | - UTASSERT_CASETYPE_MIR, /**< Manual Inspection Required (MIR) status messages */ |
62 | | - UTASSERT_CASETYPE_WARN, /**< Test was unable to run (WARN) status messages (e.g. initial condition wrong) */ |
63 | | - UTASSERT_CASETYPE_NA, /**< Test Not Applicable (NA) status messages */ |
64 | | - UTASSERT_CASETYPE_BEGIN, /**< Beginning of test status messages */ |
65 | | - UTASSERT_CASETYPE_END, /**< End of test status messages */ |
66 | | - UTASSERT_CASETYPE_INFO, /**< All other informational status messages */ |
67 | | - UTASSERT_CASETYPE_PASS, /**< Test case passed (normal) status messages */ |
68 | | - UTASSERT_CASETYPE_DONTCARE, /**< Other condition checks/messages that do not consitute test case failures */ |
69 | | - UTASSERT_CASETYPE_DEBUG, /**< Debugging messages */ |
70 | | - UTASSERT_CASETYPE_MAX /**< Reserved value, No messages should be used with this */ |
| 56 | + UTASSERT_CASETYPE_NONE, /**< Reserved value, No messages should be used with this */ |
| 57 | + UTASSERT_CASETYPE_ABORT, /**< Test sequence abort (major failure, cannot continue) */ |
| 58 | + UTASSERT_CASETYPE_FAILURE, /**< Test case failure status messages */ |
| 59 | + UTASSERT_CASETYPE_TSF, /**< Test Setup Failure (TSF) status messages */ |
| 60 | + UTASSERT_CASETYPE_TTF, /**< Test Teardown Failure (TTF) status messages */ |
| 61 | + UTASSERT_CASETYPE_MIR, /**< Manual Inspection Required (MIR) status messages */ |
| 62 | + UTASSERT_CASETYPE_WARN, /**< Test was unable to run (WARN) status messages (e.g. initial condition wrong) */ |
| 63 | + UTASSERT_CASETYPE_NA, /**< Test Not Applicable (NA) status messages */ |
| 64 | + UTASSERT_CASETYPE_BEGIN, /**< Beginning of test status messages */ |
| 65 | + UTASSERT_CASETYPE_END, /**< End of test status messages */ |
| 66 | + UTASSERT_CASETYPE_INFO, /**< All other informational status messages */ |
| 67 | + UTASSERT_CASETYPE_PASS, /**< Test case passed (normal) status messages */ |
| 68 | + UTASSERT_CASETYPE_FLOW, /**< Other condition checks/messages that record test flow, but are not assertions */ |
| 69 | + UTASSERT_CASETYPE_DEBUG, /**< Debugging messages */ |
| 70 | + UTASSERT_CASETYPE_MAX /**< Reserved value, No messages should be used with this */ |
71 | 71 | } UtAssert_CaseType_t; |
72 | 72 |
|
73 | 73 | /** |
|
0 commit comments