testfailure.h.svn-base

来自「很好用的网络封装库,不熟悉网络编程的人也可以使用。使用风格良好的标准c++编写。」· SVN-BASE 代码 · 共 87 行

SVN-BASE
87
字号
//
// TestFailure.h
//
// $Id: //poco/1.3/CppUnit/include/CppUnit/TestFailure.h#1 $
//


#ifndef CppUnit_TestFailure_INCLUDED
#define CppUnit_TestFailure_INCLUDED


#include "CppUnit/CppUnit.h"
#include "CppUnit/CppUnitException.h"
#include "CppUnit/Guards.h"


namespace CppUnit {


class Test;


/*
 * A TestFailure collects a failed test together with
 * the caught exception.
 *
 * TestFailure assumes lifetime control for any exception
 * passed to it.  The lifetime of tests is handled by
 * their TestSuite (if they have been added to one) or
 * whomever creates them.
 *
 * see TestResult
 * see TestSuite
 *
 */
class CppUnit_API TestFailure
{
	REFERENCEOBJECT (TestFailure)

public:
	TestFailure(Test* failedTest, CppUnitException* thrownException);
	~TestFailure();

	Test* failedTest();
	CppUnitException* thrownException();
	std::string toString();

protected:
	Test* _failedTest;
	CppUnitException *_thrownException;
};


// Constructs a TestFailure with the given test and exception.
inline TestFailure::TestFailure(Test* failedTest, CppUnitException* thrownException): _failedTest(failedTest), _thrownException(thrownException)
{
}


// Deletes the owned exception.
inline TestFailure::~TestFailure()
{ 
	delete _thrownException;
}


// Gets the failed test.
inline Test* TestFailure::failedTest()
{
	return _failedTest;
}


// Gets the thrown exception.
inline CppUnitException* TestFailure::thrownException()
{
	return _thrownException;
}


} // namespace CppUnit


#endif // CppUnit_TestFailure_INCLUDED


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?