📄 querytestcase.h
字号:
#ifndef CPP_UNIT_QUERYTESTCASE_H
#define CPP_UNIT_QUERYTESTCASE_H
#include "TestCase.h"
#include "TestSuite.h"
#include "TestCaller.h"
class QueryTestCase : public TestCase
{
public:
QueryTestCase (std::string name) : TestCase (name) {}
void setUp ();
static Test *suite ();
protected:
void testSimpleQuery();
void testSimpleSelectiveIterator();
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -