⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 subclassedtestcase.h

📁 这是国外的resip协议栈
💻 H
字号:
#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 &copy );  void operator =( const SubclassedTestCase &copy );};#endif  // SUBCLASSEDTESTCASE_H

⌨️ 快捷键说明

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