blob: c43610db73a1472bf90f8aaf6edded345c4c4456 (
plain)
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
|
/* Generated file, do not edit */
#ifndef CXXTEST_RUNNING
#define CXXTEST_RUNNING
#endif
#include <cxxtest/TestListener.h>
#include <cxxtest/TestTracker.h>
#include <cxxtest/TestRunner.h>
#include <cxxtest/RealDescriptions.h>
#include <cxxtest/ErrorPrinter.h>
int main() {
return CxxTest::ErrorPrinter().run();
}
#include "test-net-obj.hh"
static test_net_obj suite_test_net_obj;
static CxxTest::List Tests_test_net_obj = { 0, 0 };
CxxTest::StaticSuiteDescription suiteDescription_test_net_obj( "test-net-obj.hh", 88, "test_net_obj", suite_test_net_obj, Tests_test_net_obj );
static class TestDescription_test_net_obj_test_lifecycle : public CxxTest::RealTestDescription {
public:
TestDescription_test_net_obj_test_lifecycle() : CxxTest::RealTestDescription( Tests_test_net_obj, suiteDescription_test_net_obj, 92, "test_lifecycle" ) {}
void runTest() { suite_test_net_obj.test_lifecycle(); }
} testDescription_test_net_obj_test_lifecycle;
static class TestDescription_test_net_obj_test_missing_program : public CxxTest::RealTestDescription {
public:
TestDescription_test_net_obj_test_missing_program() : CxxTest::RealTestDescription( Tests_test_net_obj, suiteDescription_test_net_obj, 100, "test_missing_program" ) {}
void runTest() { suite_test_net_obj.test_missing_program(); }
} testDescription_test_net_obj_test_missing_program;
#include <cxxtest/Root.cpp>
|