diff options
Diffstat (limited to 'include/gtest/gtest-test-part.h')
-rw-r--r-- | include/gtest/gtest-test-part.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/gtest/gtest-test-part.h b/include/gtest/gtest-test-part.h index d5b27130..14d8e7b6 100644 --- a/include/gtest/gtest-test-part.h +++ b/include/gtest/gtest-test-part.h @@ -41,6 +41,9 @@ namespace testing { // The possible outcomes of a test part (i.e. an assertion or an // explicit SUCCEED(), FAIL(), or ADD_FAILURE()). +// TODO(vladl@google.com): Rename the enum values to kSuccess, +// kNonFatalFailure, and kFatalFailure before publishing the event listener +// API (see issue http://code.google.com/p/googletest/issues/detail?id=165). enum TestPartResultType { TPRT_SUCCESS, // Succeeded. TPRT_NONFATAL_FAILURE, // Failed but the test can continue. |