poco/CppUnit/src/TestFailure.cpp
2006-12-22 09:39:06 +00:00

23 lines
344 B
C++

//
// TestFailure.cpp
//
// $Id: //poco/1.3/CppUnit/src/TestFailure.cpp#1 $
//
#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