An enumeration of the three reasons that a test might be aborted.
| 9717 | |
| 9718 | // An enumeration of the three reasons that a test might be aborted. |
| 9719 | enum AbortReason { |
| 9720 | TEST_ENCOUNTERED_RETURN_STATEMENT, |
| 9721 | TEST_THREW_EXCEPTION, |
| 9722 | TEST_DID_NOT_DIE |
| 9723 | }; |
| 9724 | |
| 9725 | // Assumes one of the above roles. |
| 9726 | virtual TestRole AssumeRole() = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected