mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-26 21:58:39 +01:00
9 lines
209 B
C++
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 ();
|
|
}
|