/extlibs/UnitTest++/source/DeferredTestResult.h
https://bitbucket.org/hugoruscitti/pilascpp · C++ Header · 29 lines · 21 code · 8 blank · 0 comment · 0 complexity · 7982a46ba3cfb24682d319a57295f485 MD5 · raw file
- #ifndef UNITTEST_DEFERREDTESTRESULT_H
- #define UNITTEST_DEFERREDTESTRESULT_H
-
- #include <string>
- #include <vector>
-
- namespace UnitTest
- {
-
- struct DeferredTestResult
- {
- DeferredTestResult();
- DeferredTestResult(char const* suite, char const* test);
-
- std::string suiteName;
- std::string testName;
- std::string failureFile;
-
- typedef std::pair< int, std::string > Failure;
- typedef std::vector< Failure > FailureVec;
- FailureVec failures;
-
- float timeElapsed;
- bool failed;
- };
-
- }
-
- #endif //UNITTEST_DEFERREDTESTRESULT_H