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