arabica/tests/CppUnit/framework/TestFailure.cpp
2007-07-19 17:43:13 +00:00

9 lines
209 B
C++

#include "TestFailure.h"
#include "Test.h"
// Returns a short description of the failure.
std::string TestFailure::toString ()
{
return m_failedTest->toString () + ": " + m_thrownException->what ();
}