2025-04-27 07:49:33 -04:00

10 lines
218 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 ();
}