| 1234567891011121314151617181920212223242526272829303132 |
- #ifndef UNITTEST_DEFERREDTESTRESULT_H
- #define UNITTEST_DEFERREDTESTRESULT_H
- #include "Config.h"
- #include <string>
- #include <vector>
- namespace UnitTest
- {
- struct DeferredTestResult
- {
- DeferredTestResult();
- DeferredTestResult(char const* suite, char const* test);
- ~DeferredTestResult();
-
- 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
|