smjtester.h

来自「mini database sort-merge join」· C头文件 代码 · 共 30 行

H
30
字号
// -*- 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 + =
减小字号Ctrl + -
显示快捷键?