mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-15 09:17:13 +01:00
21 lines
290 B
C++
21 lines
290 B
C++
|
//
|
||
|
// TestFailure.cpp
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "CppUnit/TestFailure.h"
|
||
|
#include "CppUnit/Test.h"
|
||
|
|
||
|
|
||
|
namespace CppUnit {
|
||
|
|
||
|
|
||
|
// Returns a short description of the failure.
|
||
|
std::string TestFailure::toString()
|
||
|
{
|
||
|
return _failedTest->toString () + ": " + _thrownException->what();
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace CppUnit
|