📄 smjtester.h
字号:
// -*- C++ -*-
#ifndef _SMJTESTER_H_
#define _SMJTESTER_H_
#include "test_driver.h"
class SMJTester : public TestDriver
{
public:
// This constructs the tester. You then test it by calling runTests().
SMJTester();
~SMJTester();
Status runTests();
private:
int test1();
int test2();
int test3();
int test4();
int test5();
int test6();
const char* testName();
Status runAllTests();
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -