diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/libtest/test.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/libtest/test.h b/test/libtest/test.h index c85eeb5d..ec08bf97 100644 --- a/test/libtest/test.h +++ b/test/libtest/test.h @@ -9,6 +9,12 @@ #include <sstream> +enum TestStatus { + TestPass = 0, + TestFail = -1, + TestSkip = 77, +}; + class Test { public: |