-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3_test.cpp
582 lines (502 loc) · 19.6 KB
/
3_test.cpp
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
/**
* test.cpp
*
* EECS 183, Winter 2015
* Project 3: 0h h1 Test Suite
*
* Michelle Gurevich, Ezra Lesser
* mgur, elesser
*
* Tests the functions of ohhi.cpp to ensure the work correctly.
*/
#include <iostream>
#include <cassert>
#include "utility.h"
#include "ohhi.h"
void test_count_unknown_squares();
void test_solve_three_in_a_row();
void test_solve_three_in_a_column();
void test_solve_balance_row();
void test_solve_balance_column();
void test_board_has_no_duplicates();
void test_check_valid_input();
void test_check_valid_move();
void test_cols_are_different();
void test_row_has_no_threes_of_color();
const int board_0[][MAX_SIZE] = {
{0,0,0,0},
{1,1,0,0},
{0,2,2,0},
{0,0,2,0}
};
const int board_1[][MAX_SIZE] = {
{1,2,2,1},
{1,2,2,1},
{0,0,0,0},
{0,0,0,0}
};
const int board_rme6[][MAX_SIZE] = {
{1,1,0,0},
{2,2,0,0},
{2,2,0,0},
{1,1,0,0}
};
const int board_rme7[][MAX_SIZE] = {
{1,1,0,0},
{2,1,0,0},
{2,2,0,0},
{1,2,0,0}
};
const int board_rme8[][MAX_SIZE] = {
{1,1,0,0},
{2,2,0,0},
{0,2,0,0},
{1,1,0,0}
};
const int board_rme9[][MAX_SIZE] = {
{1,1,0,0},
{2,2,0,0},
{0,2,0,0},
{1,1,0,0}
};
const int board_rme10[][MAX_SIZE] = {
{1,1,0,0},
{2,2,0,0},
{0,0,0,0},
{1,1,0,0}
};
const int board_rme11[][MAX_SIZE] = {
{2,2,0,0},
{1,1,2,2},
{1,1,2,0},
{2,0,1,0}
};
const int board_rme12[][MAX_SIZE] = {
{2,2,0,0},
{1,1,2,2},
{1,1,2,2},
{2,0,2,0}
};
const int board_rme13[][MAX_SIZE] = {
{1,2,2,1},
{2,1,1,2},
{1,2,1,2},
{2,1,2,1}
};
const int board_rme14[][MAX_SIZE] = {
{1,2,2,1},
{2,1,1,2},
{1,2,2,1},
{2,1,2,1}
};
const int board_rme15[][MAX_SIZE] = {
{1,2,2,1},
{2,1,1,2},
{1,2,1,1},
{2,1,2,2}
};
int main() {
test_count_unknown_squares();
test_solve_three_in_a_row();
test_solve_three_in_a_column();
test_solve_balance_row();
test_solve_balance_column();
test_board_has_no_duplicates();
test_check_valid_input();
test_check_valid_move();
test_cols_are_different();
test_row_has_no_threes_of_color();
return 0;
}
void test_count_unknown_squares() {
cout << "Testing count_unknown_squares()" << endl;
if (count_unknown_squares(board_0, 4) != 11) {
cout << "Error: count_unknown_squares with board_0" << endl;
}
if (count_unknown_squares(board_0, 2) != 2) {
cout << "Error: count_unknown_squares with board_0" << endl;
}
if (count_unknown_squares(board_1, 4) != 8) {
cout << "End testing count_unknown_squares() with board_1" << endl << endl;
}
if (count_unknown_squares(board_1, 2) != 0) {
cout << "End testing count_unknown_squares() with board_1" << endl << endl;
}
}
// tests if the function solves three in a row
void test_solve_three_in_a_row() {
cout << "testing solve_three_in_a_row()" << endl;
int board_row[][MAX_SIZE] = {
{2,2,0,0,0,0},
{1,1,2,2,0,2},
{1,2,1,2,0,0},
{2,0,2,0,0,1},
{2,1,1,2,1,0},
{0,0,0,0,1,1}
};
for (int i = 0; i < 6; i++) {
solve_three_in_a_row(board_row, 6, i, false);
}
print_board(board_row, 6);
}
// tests if the function solves three in a column
void test_solve_three_in_a_column() {
cout << "testing solve_three_in_a_column()" << endl;
int board_col[][MAX_SIZE] = {
{2,0,0,0,1,0},
{1,0,2,2,1,0},
{1,0,1,2,0,1},
{2,0,2,0,0,0},
{0,1,0,1,0,0},
{0,1,2,0,0,0}
};
for (int j = 0; j < 6; j++) {
solve_three_in_a_column(board_col, 6, j, false);
}
print_board(board_col, 6);
}
// tests if the function fills the rest of a row with the necessary color
void test_solve_balance_row() {
cout << "testing solve_balance_row()" << endl;
int board_row[][MAX_SIZE] = {
{2,2,0,0,0,0},
{1,1,2,2,0,2},
{1,2,1,2,0,0},
{2,0,2,0,2,1},
{2,1,1,2,1,2},
{0,0,0,0,1,1}
};
for (int i = 0; i < 6; i++) {
solve_balance_row(board_row, 6, i, false);
}
print_board(board_row, 6);
}
// tests if the function fills the rest of a column with the necessary color
void test_solve_balance_column() {
cout << "testing solve_balance_column()" << endl;
int board_col[][MAX_SIZE] = {
{2,0,0,0,1,1},
{1,0,2,2,1,0},
{1,0,1,2,0,1},
{2,0,2,0,0,0},
{1,1,0,1,0,0},
{2,1,2,2,0,1}
};
for (int j = 0; j < 6; j++) {
solve_balance_column(board_col, 6, j, false);
}
print_board(board_col, 6);
}
// tests if various boards contain duplicate rows or columns
void test_board_has_no_duplicates() {
cout << "testing board_has_no_duplicates()" << endl;
if (!board_has_no_duplicates(board_rme11, 4))
cout << "error: rme 11 should return true";
if (board_has_no_duplicates(board_rme12, 4))
cout << "error: rme 12 should return false";
if (!board_has_no_duplicates(board_rme13, 4))
cout << "error: rme 11 should return true";
if (board_has_no_duplicates(board_rme14, 4))
cout << "error: rme 12 should return false";
if (board_has_no_duplicates(board_rme15, 4))
cout << "error: rme 12 should return false";
}
// test if various inputs are registered as valid
void test_check_valid_input() {
cout << "testing check_valid_input()" << endl;
int row = 2;
int col = 2;
assert(check_valid_input(4, 1, 'A', 'o', row, col) == true);
assert(check_valid_input(4, 1, 'a', 'O', row, col) == true);
assert(check_valid_input(4, 2, 'a', '-', row, col) == true);
assert(check_valid_input(4, 1, '!', 'o', row, col) == false);
assert(check_valid_input(4, 1, 'B', 'X', row, col) == true);
assert(check_valid_input(4, 1, 'D', 'x', row, col) == true);
assert(check_valid_input(4, 1, 'd', 'X', row, col) == true);
assert(check_valid_input(4, 5, 'B', 'x', row, col) == false);
assert(check_valid_input(4, 4, 'E', 'x', row, col) == false);
assert(check_valid_input(6, 0, 'E', 'x', row, col) == false);
assert(check_valid_input(6, 4, 'E', 'r', row, col) == false);
assert(check_valid_input(6, 4, 'E', 'b', row, col) == false);
assert(check_valid_input(6, 4, 'E', 'R', row, col) == false);
assert(check_valid_input(6, 4, 'E', 'B', row, col) == false);
assert(check_valid_input(4, 3, 'd', 'O', row, col) == true);
assert(check_valid_input(6, 4, 'E', '0', row, col) == false);
assert(check_valid_input(6, 4, 'E', 0, row, col) == false);
assert(check_valid_input(6, 4, 'E', '1', row, col) == false);
assert(check_valid_input(6, 4, 'E', '2', row, col) == false);
}
// tests if various moves are valid ones
void test_check_valid_move() {
cout << "testing check_valid_move()" << endl;
int board_original[][MAX_SIZE] = {
{2,2,0,0,0,0},
{1,1,2,2,0,2},
{1,2,1,2,0,0},
{2,0,0,0,2,1},
{2,1,1,2,1,2},
{0,0,0,0,1,1}
};
int board_current[][MAX_SIZE] = {
{2,2,0,0,0,0},
{1,1,2,2,0,2},
{1,2,1,2,0,0},
{2,0,2,0,2,1},
{2,1,1,2,1,2},
{0,0,0,0,1,1}
};
if (check_valid_move(board_original, board_current, 6, 0, 1, RED)) {
cout << "error: changed original tile" << endl;
}
if (!check_valid_move(board_original, board_current, 6, 0, 2, RED)) {
cout << "error: did not change original title" << endl;
}
if (check_valid_move(board_original, board_current, 6, 1, 5, BLUE)) {
cout << "error: wrong color" << endl;
}
if (!check_valid_move(board_original, board_current, 6, 1, 5, RED)) {
cout << "error: was right color" << endl;
}
if (!check_valid_move(board_original, board_current, 6, 3, 2, RED)) {
cout << "error: was valid move" << endl;
}
}
// tests whether function returns correctly for columns being different or same
void test_cols_are_different() {
cout << "testing cols_are_different()" << endl;
if (cols_are_different(board_rme6, 4, 0, 1)) {
cout << "error: rme 6 rows 0,1 should return false";
}
if (!cols_are_different(board_rme7, 4, 0, 1)) {
cout << "error: rme 7 rows 0,1 should return true";
}
if (!cols_are_different(board_rme8, 4, 0, 1)) {
cout << "error: rme 8 rows 0,1 should return true";
}
if (!cols_are_different(board_rme9, 4, 2, 3)) {
cout << "error: rme 9 rows 2,3 should return true";
}
if (!cols_are_different(board_rme10, 4, 0, 1)) {
cout << "error: rme 10 rows 0,1 should return true";
}
}
// tests if function correctly checks for row containing no threes of one color
void test_row_has_no_threes_of_color() {
cout << "testing row_has_no_threes_of_color()" << endl;
const int board_0[][MAX_SIZE] = {
{2,0},
{2,2}
};
assert(row_has_no_threes_of_color(board_0, 2, 1, RED) == true);
assert(row_has_no_threes_of_color(board_0, 2, 1, BLUE) == true);
assert(row_has_no_threes_of_color(board_0, 2, 1, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_0, 2, 0, RED) == true);
assert(row_has_no_threes_of_color(board_0, 2, 0, BLUE) == true);
assert(row_has_no_threes_of_color(board_0, 2, 0, UNKNOWN) == true);
const int board_1[][MAX_SIZE] = {
{2,0,2,1},
{2,2,2,0},
{0,2,2,0},
{0,2,0,0}
};
assert(row_has_no_threes_of_color(board_1, 4, 3, RED) == true);
assert(row_has_no_threes_of_color(board_1, 4, 3, BLUE) == true);
assert(row_has_no_threes_of_color(board_1, 4, 3, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_1, 4, 2, RED) == true);
assert(row_has_no_threes_of_color(board_1, 4, 2, BLUE) == true);
assert(row_has_no_threes_of_color(board_1, 4, 2, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_1, 4, 1, RED) == true);
assert(row_has_no_threes_of_color(board_1, 4, 1, BLUE) == false);
assert(row_has_no_threes_of_color(board_1, 4, 1, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_1, 4, 0, RED) == true);
assert(row_has_no_threes_of_color(board_1, 4, 0, BLUE) == true);
assert(row_has_no_threes_of_color(board_1, 4, 0, UNKNOWN) == true);
const int board_2[][MAX_SIZE] = {
{2,0,2,1,1,1},
{2,2,2,0,0,0},
{1,2,2,1,1,1},
{0,2,0,0,0,0},
{0,0,0,0,0,0},
{0,0,0,0,0,0}
};
assert(row_has_no_threes_of_color(board_2, 6, 5, RED) == true);
assert(row_has_no_threes_of_color(board_2, 6, 5, BLUE) == true);
assert(row_has_no_threes_of_color(board_2, 6, 5, UNKNOWN) == false);
assert(row_has_no_threes_of_color(board_2, 6, 4, RED) == true);
assert(row_has_no_threes_of_color(board_2, 6, 4, BLUE) == true);
assert(row_has_no_threes_of_color(board_2, 6, 4, UNKNOWN) == false);
assert(row_has_no_threes_of_color(board_2, 6, 3, RED) == true);
assert(row_has_no_threes_of_color(board_2, 6, 3, BLUE) == true);
assert(row_has_no_threes_of_color(board_2, 6, 3, UNKNOWN) == false);
assert(row_has_no_threes_of_color(board_2, 6, 2, RED) == false);
assert(row_has_no_threes_of_color(board_2, 6, 2, BLUE) == true);
assert(row_has_no_threes_of_color(board_2, 6, 2, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_2, 6, 1, RED) == true);
assert(row_has_no_threes_of_color(board_2, 6, 1, BLUE) == false);
assert(row_has_no_threes_of_color(board_2, 6, 1, UNKNOWN) == false);
assert(row_has_no_threes_of_color(board_2, 6, 0, RED) == false);
assert(row_has_no_threes_of_color(board_2, 6, 0, BLUE) == true);
assert(row_has_no_threes_of_color(board_2, 6, 0, UNKNOWN) == true);
const int board_3[][MAX_SIZE] = {
{2,2},
{2,2}
};
assert(row_has_no_threes_of_color(board_3, 2, 0, RED) == true);
assert(row_has_no_threes_of_color(board_3, 2, 1, RED) == true);
assert(row_has_no_threes_of_color(board_3, 2, 0, BLUE) == true);
assert(row_has_no_threes_of_color(board_3, 2, 1, BLUE) == true);
assert(row_has_no_threes_of_color(board_3, 2, 0, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_3, 2, 1, UNKNOWN) == true);
const int board_4[][MAX_SIZE] = {
{2,2,2,2},
{2,2,2,2},
{2,2,2,2},
{2,2,2,2}
};
assert(row_has_no_threes_of_color(board_4, 2, 0, RED) == true);
assert(row_has_no_threes_of_color(board_4, 2, 1, RED) == true);
assert(row_has_no_threes_of_color(board_4, 2, 2, RED) == true);
assert(row_has_no_threes_of_color(board_4, 2, 3, RED) == true);
assert(row_has_no_threes_of_color(board_4, 2, 0, BLUE) == true);
assert(row_has_no_threes_of_color(board_4, 2, 1, BLUE) == true);
assert(row_has_no_threes_of_color(board_4, 2, 2, BLUE) == true);
assert(row_has_no_threes_of_color(board_4, 2, 3, BLUE) == true);
assert(row_has_no_threes_of_color(board_4, 2, 0, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_4, 2, 1, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_4, 2, 2, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_4, 2, 3, UNKNOWN) == true);
const int board_5[][MAX_SIZE] = {
{1,2,0,0,0,1},
{0,0,0,0,0,2},
{0,0,0,0,0,0},
{0,0,0,0,0,0},
{0,0,0,0,0,0},
{0,0,0,0,0,1}
};
assert(row_has_no_threes_of_color(board_5, 2, 0, RED) == true);
assert(row_has_no_threes_of_color(board_5, 2, 1, RED) == true);
assert(row_has_no_threes_of_color(board_5, 2, 2, RED) == true);
assert(row_has_no_threes_of_color(board_5, 2, 3, RED) == true);
assert(row_has_no_threes_of_color(board_5, 2, 4, RED) == true);
assert(row_has_no_threes_of_color(board_5, 2, 4, RED) == true);
assert(row_has_no_threes_of_color(board_5, 2, 0, BLUE) == true);
assert(row_has_no_threes_of_color(board_5, 2, 1, BLUE) == true);
assert(row_has_no_threes_of_color(board_5, 2, 2, BLUE) == true);
assert(row_has_no_threes_of_color(board_5, 2, 3, BLUE) == true);
assert(row_has_no_threes_of_color(board_5, 2, 4, BLUE) == true);
assert(row_has_no_threes_of_color(board_5, 2, 4, BLUE) == true);
assert(row_has_no_threes_of_color(board_5, 2, 0, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_5, 2, 1, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_5, 2, 2, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_5, 2, 3, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_5, 2, 4, UNKNOWN) == true);
assert(row_has_no_threes_of_color(board_5, 2, 5, UNKNOWN) == true);
const int board_26[][MAX_SIZE] = {
{1, 0, 0, 1, 0, 0},
{0, 0, 0, 0, 0, 0},
{1, 0, 1, 0, 0, 1},
{0, 0, 0, 0, 0, 2},
{0, 2, 0, 2, 0, 1},
{0, 0, 1, 1, 0, 2}
};
for (int i = 0; i < 6; ++i) {
assert(row_has_no_threes_of_color(board_26, 6, i, RED));
assert(row_has_no_threes_of_color(board_26, 6, i, BLUE));
}
assert(row_has_no_threes_of_color(board_26, 6, 0, UNKNOWN));
assert(!row_has_no_threes_of_color(board_26, 6, 1, UNKNOWN));
assert(row_has_no_threes_of_color(board_26, 6, 2, UNKNOWN));
assert(!row_has_no_threes_of_color(board_26, 6, 3, UNKNOWN));
assert(row_has_no_threes_of_color(board_26, 6, 4, UNKNOWN));
assert(row_has_no_threes_of_color(board_26, 6, 5, UNKNOWN));
const int board_28[][MAX_SIZE] = {
{0, 1, 0, 0, 0, 2, 0, 0},
{0, 2, 0, 0, 2, 0, 0, 1},
{0, 2, 0, 0, 1, 0, 2, 0},
{0, 1, 2, 2, 1, 0, 0, 0},
{0, 1, 0, 0, 2, 0, 0, 0},
{1, 2, 2, 1, 0, 0, 2, 1},
{0, 1, 0, 0, 0, 0, 1, 0},
{0, 1, 0, 0, 0, 0, 2, 0}
};
for (int i = 0; i < 8; ++i) {
assert(row_has_no_threes_of_color(board_28, 8, i, RED));
assert(row_has_no_threes_of_color(board_28, 8, i, BLUE));
}
assert(!row_has_no_threes_of_color(board_28, 8, 0, UNKNOWN));
assert(row_has_no_threes_of_color(board_28, 8, 1, UNKNOWN));
assert(row_has_no_threes_of_color(board_28, 8, 2, UNKNOWN));
assert(!row_has_no_threes_of_color(board_28, 8, 3, UNKNOWN));
assert(!row_has_no_threes_of_color(board_28, 8, 4, UNKNOWN));
assert(row_has_no_threes_of_color(board_28, 8, 5, UNKNOWN));
assert(!row_has_no_threes_of_color(board_28, 8, 6, UNKNOWN));
assert(!row_has_no_threes_of_color(board_28, 8, 7, UNKNOWN));
const int board_29[][MAX_SIZE] = {
{2, 0, 1, 0},
{0, 2, 1, 0},
{0, 0, 1, 0},
{0, 0, 1, 2}
};
for (int i = 0; i < 4; ++i) {
assert(row_has_no_threes_of_color(board_29, 4, i, RED));
assert(row_has_no_threes_of_color(board_29, 4, i, BLUE));
assert(row_has_no_threes_of_color(board_29, 4, i, UNKNOWN));
}
const int board_30[][MAX_SIZE] = {
{2, 2, 2, 1},
{1, 0, 0, 0},
{0, 1, 0, 0},
{0, 0, 1, 0}
};
for (int i = 0; i < 4; ++i) {
assert(row_has_no_threes_of_color(board_30, 4, i, RED));
}
assert(!row_has_no_threes_of_color(board_30, 4, 0, BLUE));
assert(row_has_no_threes_of_color(board_30, 4, 1, BLUE));
assert(row_has_no_threes_of_color(board_30, 4, 2, BLUE));
assert(row_has_no_threes_of_color(board_30, 4, 3, BLUE));
assert(row_has_no_threes_of_color(board_30, 4, 0, UNKNOWN));
assert(!row_has_no_threes_of_color(board_30, 4, 1, UNKNOWN));
assert(row_has_no_threes_of_color(board_30, 4, 2, UNKNOWN));
assert(row_has_no_threes_of_color(board_30, 4, 3, UNKNOWN));
const int board_33[][MAX_SIZE] = {
{1, 0, 0, 0, 0, 0},
{1, 0, 0, 0, 0, 1},
{0, 0, 2, 0, 0, 1},
{0, 0, 2, 0, 0, 0},
{1, 0, 0, 0, 0, 0},
{0, 0, 0, 1, 0, 0}
};
for (int i = 0; i < 6; ++i) {
assert(row_has_no_threes_of_color(board_33, 6, i, RED));
assert(row_has_no_threes_of_color(board_33, 6, i, BLUE));
}
assert(!row_has_no_threes_of_color(board_33, 6, 0, UNKNOWN));
assert(!row_has_no_threes_of_color(board_33, 6, 1, UNKNOWN));
assert(row_has_no_threes_of_color(board_33, 6, 2, UNKNOWN));
assert(!row_has_no_threes_of_color(board_33, 6, 3, UNKNOWN));
assert(!row_has_no_threes_of_color(board_33, 6, 4, UNKNOWN));
assert(!row_has_no_threes_of_color(board_33, 6, 5, UNKNOWN));
const int board_34[][MAX_SIZE] = {
{2, 0, 1, 2, 0, 1, 0, 2},
{1, 0, 0, 0, 2, 2, 0, 0},
{2, 0, 2, 0, 0, 1, 0, 2},
{1, 2, 1, 0, 0, 0, 2, 1},
{0, 0, 2, 0, 0, 1, 0, 0},
{1, 2, 0, 0, 0, 2, 0, 0},
{1, 1, 2, 2, 1, 0, 0, 2},
{2, 0, 0, 2, 0, 1, 0, 0}
};
for (int i = 0; i < 8; ++i) {
assert(row_has_no_threes_of_color(board_34, 8, i, RED));
assert(row_has_no_threes_of_color(board_34, 8, i, BLUE));
}
assert(row_has_no_threes_of_color(board_34, 8, 0, UNKNOWN));
assert(!row_has_no_threes_of_color(board_34, 8, 1, UNKNOWN));
assert(row_has_no_threes_of_color(board_34, 8, 2, UNKNOWN));
assert(!row_has_no_threes_of_color(board_34, 8, 3, UNKNOWN));
assert(row_has_no_threes_of_color(board_34, 8, 4, UNKNOWN));
assert(!row_has_no_threes_of_color(board_34, 8, 5, UNKNOWN));
assert(row_has_no_threes_of_color(board_34, 8, 6, UNKNOWN));
assert(row_has_no_threes_of_color(board_34, 8, 7, UNKNOWN));
}