mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
29 lines
547 B
C++
29 lines
547 B
C++
#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
|