-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathjontitan-TestCollatz.c++
181 lines (148 loc) · 4.42 KB
/
jontitan-TestCollatz.c++
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// --------------------------------
// projects/collatz/TestCollatz.c++
// Copyright (C) 2012
// Glenn P. Downing
// --------------------------------
/*
To test the program:
% ls /usr/include/cppunit/
...
HelperMacros.h
...
% locate libcppunit.a
/usr/lib/libcppunit.a
% g++ -pedantic -std=c++0x -lcppunit -ldl -Wall TestCollatz.c++ -o TestCollatz.c++.app
% valgrind TestCollatz.c++.app >& TestCollatz.c++.out
*/
// --------
// includes
// --------
#include <iostream> // cout, endl
#include <sstream> // istringtstream, ostringstream
#include <string> // ==
#include "cppunit/extensions/HelperMacros.h" // CPPUNIT_TEST, CPPUNIT_TEST_SUITE, CPPUNIT_TEST_SUITE_END
#include "cppunit/TestFixture.h" // TestFixture
#include "cppunit/TextTestRunner.h" // TextTestRunner
#include "Collatz.h"
// -----------
// TestCollatz
// -----------
struct TestCollatz : CppUnit::TestFixture {
// ----
// read
// ----
void test_read_1 () {
std::istringstream r("1 10\n");
int i;
int j;
const bool b = collatz_read(r, i, j);
CPPUNIT_ASSERT(b == true);
CPPUNIT_ASSERT(i == 1);
CPPUNIT_ASSERT(j == 10);}
void test_read_2 () {
std::istringstream r("1 1\n");
int i;
int j;
const bool b = collatz_read(r, i, j);
CPPUNIT_ASSERT(b == true);
CPPUNIT_ASSERT(i == 1);
CPPUNIT_ASSERT(j == 1);}
void test_read_3 () {
std::istringstream r("\n");
int i;
int j;
const bool b = collatz_read(r, i, j);
CPPUNIT_ASSERT(b == false);}
// ----
// calc
// ----
void test_calc_1 () {
const int v = collatz_calc(1);
CPPUNIT_ASSERT(v == 1);}
void test_calc_2 () {
const int v = collatz_calc(5);
CPPUNIT_ASSERT(v == 6);}
void test_calc_3 () {
const int v = collatz_calc(10);
CPPUNIT_ASSERT(v == 7);}
// ----
// eval
// ----
void test_eval_1 () {
const int v = collatz_eval(1, 10);
CPPUNIT_ASSERT(v == 20);}
void test_eval_2 () {
const int v = collatz_eval(100, 200);
CPPUNIT_ASSERT(v == 125);}
void test_eval_3 () {
const int v = collatz_eval(201, 210);
CPPUNIT_ASSERT(v == 89);}
void test_eval_4 () {
const int v = collatz_eval(900, 1000);
CPPUNIT_ASSERT(v == 174);}
// -----
// print
// -----
void test_print_1 () {
std::ostringstream w;
collatz_print(w, 1, 10, 20);
CPPUNIT_ASSERT(w.str() == "1 10 20\n");}
void test_print_2 () {
std::ostringstream w;
collatz_print(w, 1, 1, 1);
CPPUNIT_ASSERT(w.str() == "1 1 1\n");}
void test_print_3 () {
std::ostringstream w;
collatz_print(w, 3, 1, 8);
CPPUNIT_ASSERT(w.str() == "3 1 8\n");}
// -----
// solve
// -----
void test_solve_1 () {
std::istringstream r("1 10\n100 200\n201 210\n900 1000\n");
std::ostringstream w;
collatz_solve(r, w);
CPPUNIT_ASSERT(w.str() == "1 10 20\n100 200 125\n201 210 89\n900 1000 174\n");}
void test_solve_2 () {
std::istringstream r("");
std::ostringstream w;
collatz_solve(r, w);
CPPUNIT_ASSERT(w.str() == "");}
void test_solve_3 () {
std::istringstream r("1 1\n2 2\n3 1\n");
std::ostringstream w;
collatz_solve(r, w);
CPPUNIT_ASSERT(w.str() == "1 1 1\n2 2 2\n3 1 8\n");}
// -----
// suite
// -----
CPPUNIT_TEST_SUITE(TestCollatz);
CPPUNIT_TEST(test_read_1);
CPPUNIT_TEST(test_read_2);
CPPUNIT_TEST(test_read_3);
CPPUNIT_TEST(test_calc_1);
CPPUNIT_TEST(test_calc_2);
CPPUNIT_TEST(test_calc_3);
CPPUNIT_TEST(test_eval_1);
CPPUNIT_TEST(test_eval_2);
CPPUNIT_TEST(test_eval_3);
CPPUNIT_TEST(test_eval_4);
CPPUNIT_TEST(test_print_1);
CPPUNIT_TEST(test_print_2);
CPPUNIT_TEST(test_print_3);
CPPUNIT_TEST(test_solve_1);
CPPUNIT_TEST(test_solve_2);
CPPUNIT_TEST(test_solve_3);
CPPUNIT_TEST_SUITE_END();};
// ----
// main
// ----
int main () {
using namespace std;
ios_base::sync_with_stdio(false); // turn off synchronization with C I/O
cout << "TestCollatz.c++" << endl;
CppUnit::TextTestRunner tr;
tr.addTest(TestCollatz::suite());
tr.run();
cout << "Done." << endl;
return 0;}