forked from xsznix/collatz-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsn293-TestCollatz.c++
163 lines (133 loc) · 3.48 KB
/
tsn293-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
// --------------------------------
// projects/collatz/TestCollatz.c++
// Copyright (C) 2016
// Glenn P. Downing
// --------------------------------
// https://code.google.com/p/googletest/wiki/V1_7_Primer#Basic_Assertions
// --------
// includes
// --------
#include <iostream> // cout, endl
#include <sstream> // istringtstream, ostringstream
#include <string> // string
#include "gtest/gtest.h"
#include "Collatz.h"
using namespace std;
// ----
// read
// ----
TEST(CollatzFixture, read1) {
istringstream r("1 10\n");
int i;
int j;
const bool b = collatz_read(r, i, j);
ASSERT_TRUE(b);
ASSERT_EQ(1, i);
ASSERT_EQ(10, j);
}
TEST(CollatzFixture, read2) {
istringstream r("999999 999998\n");
int i;
int j;
const bool b = collatz_read(r, i, j);
ASSERT_TRUE(b);
ASSERT_EQ(999999, i);
ASSERT_EQ(999998, j);
}
// ----
// eval
// ----
TEST(CollatzFixture, eval_1) {
const int v = collatz_eval(1024, 2048);
ASSERT_EQ(182, v);
}
TEST(CollatzFixture, eval_2) {
const int v = collatz_eval(455513, 458130);
ASSERT_EQ(356, v);
}
TEST(CollatzFixture, eval_3) {
const int v = collatz_eval(569103, 573712);
ASSERT_EQ(377, v);
}
TEST(CollatzFixture, simple_eval_1) {
const int v = simple_eval(1024, 2048);
ASSERT_EQ(182, v);
}
TEST(CollatzFixture, simple_eval_2) {
const int v = simple_eval(975735, 975858);
ASSERT_EQ(334, v);
}
TEST(CollatzFixture, simple_eval_3) {
const int v = simple_eval(175659, 181398);
ASSERT_EQ(365, v);
}
TEST(CollatzFixture, optimized_eval_1) {
const int v = optimized_eval(1024, 2048);
ASSERT_EQ(182, v);
}
TEST(CollatzFixture, optimized_eval_2) {
const int v = optimized_eval(10, 17500);
ASSERT_EQ(276, v);
}
TEST(CollatzFixture, optimized_eval_3) {
const int v = optimized_eval(17750, 20000);
ASSERT_EQ(274, v);
}
TEST(CollatzFixture, optimized_eval_4) {
const int v = optimized_eval(13250, 17750);
ASSERT_EQ(279, v);
}
// -----
// print
// -----
TEST(CollatzFixture, print1) {
ostringstream w;
collatz_print(w, 1, 10, 20);
ASSERT_EQ("1 10 20\n", w.str());
}
TEST(CollatzFixture, print2) {
ostringstream w;
collatz_print(w, 999999, 999998, 259);
ASSERT_EQ("999999 999998 259\n", w.str());
}
// -----
// solve
// -----
TEST(CollatzFixture, solve1) {
istringstream r("1 10\n100 200\n201 210\n900 1000\n");
ostringstream w;
collatz_solve(r, w);
ASSERT_EQ("1 10 20\n100 200 125\n201 210 89\n900 1000 174\n", w.str());
}
TEST(CollatzFixture, solve2) {
istringstream r("1000 10000\n50000 60000\n7500 8000\n100000 1\n");
ostringstream w;
collatz_solve(r, w);
ASSERT_EQ("1000 10000 262\n50000 60000 340\n7500 8000 252\n100000 1 351\n",
w.str());
}
TEST(CollatzFixture, solve3) {
istringstream r("25000 10\n201570 204014\n999999 999168\n");
ostringstream w;
collatz_solve(r, w);
ASSERT_EQ("25000 10 282\n201570 204014 342\n999999 999168 396\n", w.str());
}
TEST(CollatzFixture, solve4) {
istringstream r("250000 255000\n300000 300001\n625000 626000\n");
ostringstream w;
collatz_solve(r, w);
ASSERT_EQ("250000 255000 363\n300000 300001 190\n625000 626000 354\n", w.str());
}
TEST(CollatzFixture, solve5) {
istringstream r("88888 10\n51200 51199\n1 2\n2 1\n");
ostringstream w;
collatz_solve(r, w);
ASSERT_EQ("88888 10 351\n51200 51199 128\n1 2 2\n2 1 2\n",
w.str());
}
TEST(CollatzFixture, solve6) {
istringstream r("33333 22222\n99999 9999\n24816 3264\n");
ostringstream w;
collatz_solve(r, w);
ASSERT_EQ("33333 22222 308\n99999 9999 351\n24816 3264 282\n", w.str());
}