Files
poco/CppUnit/src/TestFailure.cpp
Günter Obiltschnig 04e7e04d4d Remove \$Id`$ headers
2017-09-09 11:14:06 +02:00

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