mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-04 02:19:01 +02:00
23 lines
344 B
C++
23 lines
344 B
C++
//
|
|
// TestFailure.cpp
|
|
//
|
|
// $Id: //poco/1.3/CppUnit/src/TestFailure.cpp#1 $
|
|
//
|
|
|
|
|
|
#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
|