-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patham43299-TestCollatz.c++
166 lines (130 loc) · 4.39 KB
/
am43299-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
// --------------------------------
// projects/collatz/TestCollatz.c++
// Copyright (C) 2013
// Glenn P. Downing
// --------------------------------
/*
To test the program:
% ls -al /usr/include/gtest/
...
gtest.h
...
% locate libgtest.a
/usr/lib/libgtest.a
% locate libpthread.a
/usr/lib/x86_64-linux-gnu/libpthread.a
/usr/lib32/libpthread.a
% locate libgtest_main.a
/usr/lib/libgtest_main.a
% g++ -pedantic -std=c++0x -Wall Collatz.c++ TestCollatz.c++ -o TestCollatz -lgtest -lpthread -lgtest_main
% valgrind TestCollatz > TestCollatz.out
*/
// --------
// includes
// --------
#include <iostream> // cout, endl
#include <iterator> // istream_iterator
#include <sstream> // istringtstream, ostringstream
#include <string> // ==
#include <utility> // make_pair, pair
#include "gtest/gtest.h"
#include "Collatz2.h"
// -----------
// TestCollatz
// -----------
// ----
// read
// ----
TEST(Collatz, read) {
std::istringstream r("1 10\n");
std::istream_iterator<int> q(r);
const std::pair<int, int> p = collatz_read(q);
ASSERT_TRUE(p.first == 1);
ASSERT_TRUE(p.second == 10);}
TEST(Collatz, read) { //my unit test for read: 1st
std::istringstream r("1 1\n");
std::istream_iterator<int> q(r);
const std::pair<int, int> p = collatz_read(q);
ASSERT_TRUE(p.first == 1);
ASSERT_TRUE(p.second == 1);}
TEST(Collatz, read) { //my unit test for read: 2nd
std::istringstream r("9 100\n");
std::istream_iterator<int> q(r);
const std::pair<int, int> p = collatz_read(q);
ASSERT_TRUE(p.first == 9);
ASSERT_TRUE(p.second == 100);}
TEST(Collatz, read) { //my unit test for read: 3rd
std::istringstream r("15 31\n");
std::istream_iterator<int> q(r);
const std::pair<int, int> p = collatz_read(q);
ASSERT_TRUE(p.first == 15);
ASSERT_TRUE(p.second == 31);}
// ----
// eval
// ----
TEST(Collatz, eval_1) {
const int v = collatz_eval(std::make_pair(1, 10));
ASSERT_TRUE(v == 20);}
TEST(Collatz, eval_2) {
const int v = collatz_eval(std::make_pair(100, 200));
ASSERT_TRUE(v == 125);}
TEST(Collatz, eval_3) {
const int v = collatz_eval(std::make_pair(201, 210));
ASSERT_TRUE(v == 89);}
TEST(Collatz, eval_4) {
const int v = collatz_eval(std::make_pair(900, 1000));
ASSERT_TRUE(v == 174);}
TEST(Collatz, eval_5) { //my unit test for eval: 1st
const int v = collatz_eval(std::make_pair(9, 9));
ASSERT_TRUE(v == 20); // 9 - 28 - 14 - 7 - 22 - 11 - 34 - 17 - 52 - 26 - 13 - 40 - 20 - 10 - 5 - 16 - 8 - 4 - 2 - 1
}
TEST(Collatz, eval_6) { //my unit test for eval: 2nd
const int v = collatz_eval(std::make_pair(8, 9));
ASSERT_TRUE(v == 20);
}
TEST(Collatz, eval_6) { //my unit test for eval: 3rd
const int v = collatz_eval(std::make_pair(9,11));
ASSERT_TRUE(v == 20);
}
// -----
// print
// -----
TEST(Collatz, print) {
std::ostringstream w;
collatz_print(w, std::make_pair(1, 10), 20);
ASSERT_TRUE(w.str() == "1 10 20\n");}
TEST(Collatz, print) { //my unit test for print: 1st
std::ostringstream w;
collatz_print(w, std::make_pair(8, 9), 20);
ASSERT_TRUE(w.str() == "8 9 20\n");}
TEST(Collatz, print) { //my unit test for print: 2nd
std::ostringstream w;
collatz_print(w, std::make_pair(100, 200), 89);
ASSERT_TRUE(w.str() == "100 200 89\n");}
TEST(Collatz, print) { //my unit test for print: 3rd
std::ostringstream w;
collatz_print(w, std::make_pair(9, 9), 20);
ASSERT_TRUE(w.str() == "9 9 20\n");}
// -----
// solve
// -----
TEST(Collatz, solve) {
std::istringstream r("1 10\n100 200\n201 210\n900 1000\n");
std::ostringstream w;
collatz_solve(r, w);
ASSERT_TRUE(w.str() == "1 10 20\n100 200 125\n201 210 89\n900 1000 174\n");}
TEST(Collatz, solve) { //my unit test for solve: 1st
std::istringstream r("8 9\n9 10\n9 13\n10 13\n");
std::ostringstream w;
collatz_solve(r, w);
ASSERT_TRUE(w.str() == "8 9 20\n9 10 20\n9 13 20\n10 13 15\n");}
TEST(Collatz, solve) { //my unit test for solve: 2nd
std::istringstream r("1 1\n10 10\n2 3\n");
std::ostringstream w;
collatz_solve(r, w);
ASSERT_TRUE(w.str() == "1 1 1\n10 10 7\n2 3 8\n");}
TEST(Collatz, solve) { //my unit test for solve: 3rd
std::istringstream r("100 210\n");
std::ostringstream w;
collatz_solve(r, w);
ASSERT_TRUE(w.str() == "100 210 125\n");}