mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-18 11:39:00 +02:00
21 lines
290 B
C++
21 lines
290 B
C++
//
|
|
// TestFailure.cpp
|
|
//
|
|
|
|
|
|
#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
|