blob: 5e472df7358bac3da293d33cb2bcdc6afc40cab3 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#include "OrthodoxTest.h"
#include <cppunit/extensions/Orthodox.h>
#include <cppunit/TestResult.h>
CPPUNIT_TEST_SUITE_REGISTRATION( OrthodoxTest );
OrthodoxTest::OrthodoxTest()
{
}
OrthodoxTest::~OrthodoxTest()
{
}
void
OrthodoxTest::setUp()
{
m_result = new CppUnit::TestResult();
}
void
OrthodoxTest::tearDown()
{
delete m_result;
}
void
OrthodoxTest::testValue()
{
CppUnit::Orthodox<Value> test;
test.run( m_result );
checkSuccess();
}
void
OrthodoxTest::testValueBadConstructor()
{
CppUnit::Orthodox<ValueBadConstructor> test;
test.run( m_result );
checkFailure();
}
void
OrthodoxTest::testValueBadInvert()
{
CppUnit::Orthodox<ValueBadInvert> test;
test.run( m_result );
checkFailure();
}
void
OrthodoxTest::testValueBadEqual()
{
CppUnit::Orthodox<ValueBadEqual> test;
test.run( m_result );
checkFailure();
}
void
OrthodoxTest::testValueBadNotEqual()
{
CppUnit::Orthodox<ValueBadNotEqual> test;
test.run( m_result );
checkFailure();
}
void
OrthodoxTest::testValueBadCall()
{
CppUnit::Orthodox<ValueBadCall> test;
test.run( m_result );
checkFailure();
}
void
OrthodoxTest::testValueBadAssignment()
{
CppUnit::Orthodox<ValueBadAssignment> test;
test.run( m_result );
checkFailure();
}
void
OrthodoxTest::checkSuccess()
{
CPPUNIT_ASSERT_EQUAL( 0, m_result->testErrors() );
CPPUNIT_ASSERT_EQUAL( 0, m_result->testFailures() );
CPPUNIT_ASSERT( m_result->runTests() > 0 );
}
void
OrthodoxTest::checkFailure()
{
CPPUNIT_ASSERT( m_result->testErrors() > 0 ||
m_result->testFailures() > 0 );
}
|