test.cpp
来自「计算机软件的测试驱动程序cppunit精简版。」· C++ 代码 · 共 21 行
CPP
21 行
#include "Test.h"
#include "TestRegistry.h"
#include "TestResult.h"
Test::Test (const std::string& testName) : name (testName)
{
TestRegistry::addTest (this);
}
void Test::run (TestResult& result)
{
runTest (result);
result.testWasRun();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?