subclassedtestcase.h
来自「这是国外的resip协议栈」· C头文件 代码 · 共 36 行
H
36 行
#ifndef SUBCLASSEDTESTCASE_H#define SUBCLASSEDTESTCASE_H#include "BaseTestCase.h"class SubclassedTestCase : public BaseTestCase{ CPPUNIT_TEST_SUB_SUITE( SubclassedTestCase, BaseTestCase ); CPPUNIT_TEST( testSubclassing ); CPPUNIT_TEST_SUITE_END();public: SubclassedTestCase(); virtual ~SubclassedTestCase(); virtual void setUp(); virtual void tearDown(); // Another test to ensure the subclassed test case are in the suite . void testSubclassing();protected: // We overload this method to ensure that the testUsingCheckIt in the // parent class will fail. virtual void checkIt();private: SubclassedTestCase( const SubclassedTestCase © ); void operator =( const SubclassedTestCase © );};#endif // SUBCLASSEDTESTCASE_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?