-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrunner.cpp
More file actions
37 lines (30 loc) · 1.29 KB
/
runner.cpp
File metadata and controls
37 lines (30 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Generated file, do not edit */
#ifndef CXXTEST_RUNNING
#define CXXTEST_RUNNING
#endif
#define _CXXTEST_HAVE_STD
#include <cxxtest/TestListener.h>
#include <cxxtest/TestTracker.h>
#include <cxxtest/TestRunner.h>
#include <cxxtest/RealDescriptions.h>
#include <cxxtest/TestMain.h>
#include <cxxtest/ErrorPrinter.h>
int main( int argc, char *argv[] ) {
int status;
CxxTest::ErrorPrinter tmp;
CxxTest::RealWorldDescription::_worldName = "cxxtest";
status = CxxTest::Main< CxxTest::ErrorPrinter >( tmp, argc, argv );
return status;
}
bool suite_TestQuickStart_init = false;
#include "tests.h"
static TestQuickStart suite_TestQuickStart;
static CxxTest::List Tests_TestQuickStart = { 0, 0 };
CxxTest::StaticSuiteDescription suiteDescription_TestQuickStart( "tests.h", 3, "TestQuickStart", suite_TestQuickStart, Tests_TestQuickStart );
static class TestDescription_suite_TestQuickStart_TestBasic : public CxxTest::RealTestDescription {
public:
TestDescription_suite_TestQuickStart_TestBasic() : CxxTest::RealTestDescription( Tests_TestQuickStart, suiteDescription_TestQuickStart, 6, "TestBasic" ) {}
void runTest() { suite_TestQuickStart.TestBasic(); }
} testDescription_suite_TestQuickStart_TestBasic;
#include <cxxtest/Root.cpp>
const char* CxxTest::RealWorldDescription::_worldName = "cxxtest";