testsetup.h

来自「一个免费的SMART CARD OS系统。」· C头文件 代码 · 共 33 行

H
33
字号
#ifndef CPPUNIT_EXTENSIONS_TESTSETUP_H#define CPPUNIT_EXTENSIONS_TESTSETUP_H#include <cppunit/extensions/TestDecorator.h>namespace CppUnit {class Test;class TestResult;class CPPUNIT_API TestSetUp : public TestDecorator {public:  TestSetUp( Test *test );  void run( TestResult *result );protected:  virtual void setUp();  virtual void tearDown();private:  TestSetUp( const TestSetUp & );  void operator =( const TestSetUp & );};} //  namespace CppUnit#endif // CPPUNIT_EXTENSIONS_TESTSETUP_H

⌨️ 快捷键说明

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