软件大小: | 1122 K | ||
上传用户: | maige49 | ||
关键词: | network-centric applications integrated libraries | ||
下载地址: | 免注册下载 普通下载 |
相关代码 |
|
// // TestFailure.cpp // // $Id: //poco/1.2/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