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

📄 testdecorator.cpp

📁 C++ class libraries for network-centric, portable applications, integrated perfectly with the C++ St
💻 CPP
字号:
//// TestDecorator.cpp//// $Id: //poco/1.2/CppUnit/src/TestDecorator.cpp#1 $//#include "CppUnit/TestDecorator.h"namespace CppUnit {TestDecorator::TestDecorator(Test* test){	_test = test;}TestDecorator::~TestDecorator(){}int TestDecorator::countTestCases(){	return _test->countTestCases();}void TestDecorator::run(TestResult* result){	_test->run(result);} std::string TestDecorator::toString(){	return _test->toString();}} // namespace CppUnit

⌨️ 快捷键说明

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