forked from aeonstasis/life-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bqp65-TestLife.c++
779 lines (662 loc) · 16.8 KB
/
bqp65-TestLife.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
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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
// --------------------------
// projects/life/TestLife.c++
// Copyright (C) 2016
// Glenn P. Downing
// --------------------------
// https://code.google.com/p/googletest/wiki/V1_7_Primer#Basic_Assertions
// --------
// includes
// --------
#include "gtest/gtest.h"
#include "Life.h"
using namespace std;
// ----------
// ConwayTest
// ----------
TEST(ConwayFixture, test_write_1) {
ostringstream out;
ConwayCell c('*');
c.write(out);
ASSERT_EQ("*", out.str());
}
TEST(ConwayFixture, test_write_2) {
ostringstream out;
ConwayCell c('.');
c.write(out);
ASSERT_EQ(".", out.str());
}
TEST(ConwayFixture, test_write_3) {
ostringstream out;
ConwayCell c('*');
ConwayCell c2('.');
c.write(out);
ASSERT_EQ("*", out.str());
c2.write(out);
ASSERT_EQ("*.", out.str());
}
TEST(ConwayFixture, test_print_1) {
ostringstream in;
ConwayCell c('*');
in << c;
ASSERT_EQ("*", in.str());
}
TEST(ConwayFixture, test_print_2) {
ostringstream in;
ConwayCell c('.');
in << c;
ASSERT_EQ(".", in.str());
}
TEST(ConwayFixture, test_print_3) {
ostringstream in;
ConwayCell c('*');
ConwayCell c2('.');
in << c;
in << c2;
ASSERT_EQ("*.", in.str());
}
TEST(ConwayFixture, test_print_4) {
ostringstream in;
ConwayCell c('*');
ConwayCell c2('.');
ConwayCell c3('.');
in << c;
in << c2;
in << c3;
ASSERT_EQ("*..", in.str());
}
TEST(ConwayFixture, test_alive_1) {
ConwayCell c('*');
ASSERT_FALSE(c.is_dead());
}
TEST(ConwayFixture, test_alive_2) {
ConwayCell c('.');
ASSERT_TRUE(c.is_dead());
}
// Test with less than 3 neighbors to see if
// cell dies
TEST(ConwayFixture, test_update_1) {
ostringstream out;
ConwayCell c('*');
c.update(1);
c.write(out);
ASSERT_EQ(".", out.str());
}
// Test with 3 neighbors to see if
// cell becomes alive
TEST(ConwayFixture, test_update_2) {
ostringstream out;
ConwayCell c('.');
c.update(3);
c.write(out);
ASSERT_EQ("*", out.str());
}
// Test with more than 3 neighbors to see if
// cell dies
TEST(ConwayFixture, test_update_3) {
ostringstream out;
ConwayCell c('*');
c.update(5);
c.write(out);
ASSERT_EQ(".", out.str());
}
TEST(ConwayFixture, test_count_neighbors_1) {
ConwayCell c('*');
vector<AbstractCell *> neighbors = {nullptr, nullptr, nullptr, nullptr,
&c, &c, &c, &c};
int num_alive = c.count_neighbors(neighbors);
ASSERT_EQ(4, num_alive);
}
TEST(ConwayFixture, test_count_neighbors_2) {
ConwayCell c('*');
vector<AbstractCell *> neighbors = {nullptr, nullptr, &c, &c, &c, &c, &c, &c};
int num_alive = c.count_neighbors(neighbors);
ASSERT_EQ(6, num_alive);
}
TEST(ConwayFixture, test_count_neighbors_3) {
ConwayCell c('*');
vector<AbstractCell *> neighbors = {nullptr, nullptr, nullptr, nullptr,
nullptr, nullptr, nullptr, nullptr};
int num_alive = c.count_neighbors(neighbors);
ASSERT_EQ(0, num_alive);
}
TEST(ConwayFixture, test_count_neighbors_4) {
ConwayCell c('*');
vector<AbstractCell *> neighbors = {&c, &c, &c, &c, &c, &c, &c, &c};
int num_alive = c.count_neighbors(neighbors);
ASSERT_EQ(8, num_alive);
}
TEST(ConwayFixture, test_count_conway_neighbors_1) {
ConwayCell c('*');
vector<ConwayCell *> neighbors = {nullptr, nullptr, nullptr, nullptr,
&c, &c, &c, &c};
int num_alive = c.count_neighbors(neighbors);
ASSERT_EQ(4, num_alive);
}
TEST(ConwayFixture, test_count_conway_neighbors_2) {
ConwayCell c('*');
vector<ConwayCell *> neighbors = {nullptr, nullptr, &c, &c, &c, &c, &c, &c};
int num_alive = c.count_neighbors(neighbors);
ASSERT_EQ(6, num_alive);
}
TEST(ConwayFixture, test_count_conway_neighbors_3) {
ConwayCell c('*');
vector<ConwayCell *> neighbors = {nullptr, nullptr, nullptr, nullptr,
nullptr, nullptr, nullptr, nullptr};
int num_alive = c.count_neighbors(neighbors);
ASSERT_EQ(0, num_alive);
}
// Test alive cell
TEST(ConwayFixture, test_clone_1) {
ConwayCell c('*');
ConwayCell *c2 = c.clone();
char c_rep = c.rep;
char c2_rep = c2->rep;
delete c2;
ASSERT_EQ(c_rep, c2_rep);
}
// Test dead cell
TEST(ConwayFixture, test_clone_2) {
ConwayCell c('.');
ConwayCell *c2 = c.clone();
char c_rep = c.rep;
char c2_rep = c2->rep;
delete c2;
ASSERT_EQ(c_rep, c2_rep);
}
// ----------
// FredkinTest
// ----------
TEST(FredkinFixture, test_print1) {
FredkinCell f('4');
ostringstream out;
out << f;
ASSERT_EQ("4", out.str());
}
TEST(FredkinFixture, test_print2) {
FredkinCell f('-');
ostringstream out;
out << f;
ASSERT_EQ("-", out.str());
}
TEST(FredkinFixture, test_print3) {
FredkinCell f('+');
ostringstream out;
out << f;
ASSERT_EQ("+", out.str());
}
TEST(FredkinFixture, test_write1) {
FredkinCell f('9');
ostringstream out;
f.write(out);
ASSERT_EQ("9", out.str());
}
TEST(FredkinFixture, test_write2) {
FredkinCell f('-');
ostringstream out;
f.write(out);
ASSERT_EQ("-", out.str());
}
TEST(FredkinFixture, test_write3) {
FredkinCell f('+');
ostringstream out;
f.write(out);
ASSERT_EQ("+", out.str());
}
TEST(FredkinFixture, test_dead1) {
FredkinCell f('0');
ASSERT_EQ(f.is_dead(), false);
}
TEST(FredkinFixture, test_dead2) {
FredkinCell f('-');
ASSERT_EQ(f.is_dead(), true);
}
TEST(FredkinFixture, test_dead3) {
FredkinCell f('+');
ASSERT_EQ(f.is_dead(), false);
}
TEST(FredkinFixture, test_update1) {
FredkinCell f('0');
AbstractCell *p = f.update(0);
ASSERT_EQ(p, nullptr);
ASSERT_EQ(f.is_dead(), true);
}
TEST(FredkinFixture, test_update2) {
FredkinCell f('-');
AbstractCell *p = f.update(1);
ASSERT_EQ(p, nullptr);
ASSERT_EQ(f.is_dead(), false);
}
TEST(FredkinFixture, test_update3) {
FredkinCell f('+');
AbstractCell *p = f.update(1);
ASSERT_EQ(p, nullptr);
ASSERT_EQ(f.is_dead(), false);
}
TEST(FredkinFixture, test_update4) {
FredkinCell f('0');
f.update(1);
ConwayCell *p = dynamic_cast<ConwayCell *>(f.update(1));
ostringstream out;
out << (*p);
delete p;
ASSERT_EQ("*", out.str());
ASSERT_EQ(f.is_dead(), false);
}
TEST(FredkinFixture, test_update5) {
FredkinCell f('-');
AbstractCell *p = f.update(0);
ASSERT_EQ(p, nullptr);
ASSERT_EQ(f.is_dead(), true);
}
TEST(FredkinFixture, test_count_ac_neighbors1) {
FredkinCell f('0');
vector<AbstractCell *> ac(8);
ASSERT_EQ(0, f.count_neighbors(ac));
}
TEST(FredkinFixture, test_count_ac_neighbors2) {
FredkinCell f('0');
FredkinCell a('0');
FredkinCell d('-');
vector<AbstractCell *> ac = {&a, &d, &d, &d, &d, &d, &a, &a};
ASSERT_EQ(1, f.count_neighbors(ac));
}
TEST(FredkinFixture, test_count_ac_neighbors3) {
FredkinCell f('0');
FredkinCell a('0');
FredkinCell d('-');
vector<AbstractCell *> ac = {&a, &a, &a, &a, &a, &a, &a, &a};
ASSERT_EQ(4, f.count_neighbors(ac));
}
TEST(FredkinFixture, test_count_fc_neighbors1) {
FredkinCell f('0');
vector<FredkinCell *> ac(8);
ASSERT_EQ(0, f.count_neighbors(ac));
}
TEST(FredkinFixture, test_count_fc_neighbors2) {
FredkinCell f('0');
FredkinCell a('0');
FredkinCell d('-');
vector<FredkinCell *> ac = {&a, &a, &d, &d, &d, &d, &a, &a};
ASSERT_EQ(2, f.count_neighbors(ac));
}
TEST(FredkinFixture, test_count_fc_neighbors3) {
FredkinCell f('0');
FredkinCell a('0');
FredkinCell d('-');
vector<FredkinCell *> ac = {&a, &d, &a, &a, &a, &a, &a, &a};
ASSERT_EQ(3, f.count_neighbors(ac));
}
TEST(FredkinFixture, test_clone1) {
FredkinCell f('4');
FredkinCell *f_clone = f.clone();
char clone_rep = f_clone->rep;
int clone_age = f_clone->age;
delete f_clone;
ASSERT_EQ(f.rep, clone_rep);
ASSERT_EQ(f.age, clone_age);
}
TEST(FredkinFixture, test_clone2) {
FredkinCell f('-');
FredkinCell *f_clone = f.clone();
char clone_rep = f_clone->rep;
int clone_age = f_clone->age;
delete f_clone;
ASSERT_EQ(f.rep, clone_rep);
ASSERT_EQ(f.age, clone_age);
}
TEST(FredkinFixture, test_clone3) {
FredkinCell f('+');
FredkinCell *f_clone = f.clone();
char clone_rep = f_clone->rep;
int clone_age = f_clone->age;
delete f_clone;
ASSERT_EQ(f.rep, clone_rep);
ASSERT_EQ(f.age, clone_age);
}
// ---------
// CellTest
// ---------
TEST(CellFixture, test_print_1) {
Cell c = new FredkinCell('0');
ostringstream out;
out << c;
ASSERT_EQ("0", out.str());
}
TEST(CellFixture, test_print_2) {
Cell c = new FredkinCell('+');
ostringstream out;
out << c;
ASSERT_EQ("+", out.str());
}
TEST(CellFixture, test_print_3) {
Cell c = new ConwayCell('*');
ostringstream out;
out << c;
ASSERT_EQ("*", out.str());
}
TEST(CellFixture, test_copy_construct_1) {
Cell c1 = new FredkinCell('-');
Cell c2(c1);
ostringstream out;
out << c1 << c2;
ASSERT_EQ("--", out.str());
}
TEST(CellFixture, test_copy_construct_2) {
Cell c1 = new ConwayCell('.');
Cell c2(c1);
ostringstream out;
out << c1 << c2;
ASSERT_EQ("..", out.str());
}
TEST(CellFixture, test_copy_construct_3) {
Cell c1 = new FredkinCell('0');
Cell c2(c1);
ostringstream out;
out << c1 << c2;
ASSERT_EQ("00", out.str());
}
TEST(CellFixture, test_assign_1) {
Cell c1 = new FredkinCell('0');
Cell c2 = new ConwayCell('*');
c1 = c2;
ostringstream out;
out << c1 << c2;
ASSERT_EQ("**", out.str());
}
TEST(CellFixture, test_assign_2) {
Cell c1 = new FredkinCell('0');
Cell c2 = new ConwayCell('*');
c2 = c1;
ostringstream out;
out << c1 << c2;
ASSERT_EQ("00", out.str());
}
TEST(CellFixture, test_assign_3) {
Cell c1 = new FredkinCell('-');
Cell c2 = new ConwayCell('.');
c1 = c2;
ostringstream out;
out << c1 << c2;
ASSERT_EQ("..", out.str());
}
TEST(CellFixture, test_is_dead_1) {
Cell c = new FredkinCell('-');
ASSERT_TRUE(c.is_dead());
}
TEST(CellFixture, test_is_dead_2) {
Cell c = new FredkinCell('0');
ASSERT_FALSE(c.is_dead());
}
TEST(CellFixture, test_is_dead_3) {
Cell c = new ConwayCell('*');
ASSERT_FALSE(c.is_dead());
}
TEST(CellFixture, test_update_1) {
Cell c = new FredkinCell('0');
AbstractCell *ac1 = c.update(1);
ASSERT_EQ(nullptr, ac1);
}
TEST(CellFixture, test_update_2) {
Cell c = new FredkinCell('0');
AbstractCell *ac1 = c.update(1);
ASSERT_EQ(nullptr, ac1);
ac1 = c.update(1);
ASSERT_EQ(nullptr, ac1);
ostringstream out;
out << c;
ASSERT_EQ("*", out.str());
}
TEST(CellFixture, test_update_3) {
Cell c = new FredkinCell('-');
AbstractCell *ac1 = c.update(0);
ASSERT_EQ(nullptr, ac1);
ac1 = c.update(0);
ASSERT_EQ(nullptr, ac1);
ostringstream out;
out << c;
ASSERT_EQ("-", out.str());
}
TEST(CellFixture, test_count_neigh_1) {
Cell c = new ConwayCell('*');
Cell cc = new ConwayCell('.');
Cell fc = new FredkinCell('0');
vector<Cell *> neighbors = {nullptr, nullptr, &cc, nullptr,
&fc, nullptr, &cc, &cc};
ASSERT_EQ(1, c.count_neighbors(neighbors));
}
TEST(CellFixture, test_count_neigh_2) {
Cell c = new ConwayCell('*');
Cell cc = new ConwayCell('*');
Cell fc = new FredkinCell('-');
vector<Cell *> neighbors = {nullptr, nullptr, &cc, nullptr,
&fc, nullptr, &cc, &cc};
ASSERT_EQ(3, c.count_neighbors(neighbors));
}
TEST(CellFixture, test_count_neigh_3) {
Cell c = new FredkinCell('-');
Cell cc = new ConwayCell('*');
Cell fc = new FredkinCell('0');
vector<Cell *> neighbors = {&cc, nullptr, &cc, &fc, &fc, &cc, nullptr, &cc};
ASSERT_EQ(2, c.count_neighbors(neighbors));
}
// ---------
// LifeTest
// ---------
TEST(LifeFixture, test_print_1) {
ostringstream out;
Life<ConwayCell> li(1, 1);
ConwayCell c1('*');
li.add_cell(c1);
out << li;
ASSERT_EQ("Generation = 0, Population = 1.\n*\n\n", out.str());
}
TEST(LifeFixture, test_print_2) {
ostringstream out;
Life<FredkinCell> li(1, 1);
FredkinCell c1('0');
li.add_cell(c1);
out << li;
ASSERT_EQ("Generation = 0, Population = 1.\n0\n\n", out.str());
}
TEST(LifeFixture, test_print_3) {
ostringstream out;
Life<Cell> li(1, 2);
Cell c1 = new FredkinCell('0');
Cell c2 = new FredkinCell('0');
li.add_cell(c1);
li.add_cell(c2);
out << li;
ASSERT_EQ("Generation = 0, Population = 2.\n00\n\n", out.str());
}
TEST(LifeFixture, test_print_4) {
ostringstream out;
Life<Cell> li(1, 2);
Cell c1 = new ConwayCell('*');
Cell c2 = new ConwayCell('*');
li.add_cell(c1);
li.add_cell(c2);
li.do_generation();
out << li;
ASSERT_EQ("Generation = 1, Population = 0.\n..\n\n", out.str());
}
TEST(LifeFixture, test_get_neighbors_1) {
Life<FredkinCell> li(1, 1);
FredkinCell c1('0');
li.add_cell(c1);
vector<FredkinCell *> neigh = li.get_neighbors(0, 0);
for (unsigned int i = 0; i < neigh.size(); ++i) {
ASSERT_EQ(nullptr, neigh[i]);
}
}
TEST(LifeFixture, test_get_neighbors_2) {
Life<FredkinCell> li(2, 2);
FredkinCell c1('0');
FredkinCell c2('-');
li.add_cell(c2);
li.add_cell(c1);
li.add_cell(c1);
li.add_cell(c1);
vector<FredkinCell *> neigh = li.get_neighbors(0, 0);
for (unsigned int i = 0; i < neigh.size(); ++i) {
if (i < 4 || i == 5) {
ASSERT_EQ(nullptr, neigh[i]);
} else
ASSERT_EQ(c1.rep, (neigh[i])->rep);
}
}
TEST(LifeFixture, test_get_neighbors_3) {
Life<ConwayCell> li(2, 2);
ConwayCell c1('*');
ConwayCell c2('.');
li.add_cell(c2);
li.add_cell(c1);
li.add_cell(c1);
li.add_cell(c1);
vector<ConwayCell *> neigh = li.get_neighbors(0, 0);
for (unsigned int i = 0; i < neigh.size(); ++i) {
if (i < 4 || i == 5) {
ASSERT_EQ(nullptr, neigh[i]);
} else
ASSERT_EQ(c1.rep, (neigh[i])->rep);
}
}
TEST(LifeFixture, test_copy_construct_1) {
Life<ConwayCell> life(1, 1);
ConwayCell c('*');
life.add_cell(c);
ostringstream out1;
ostringstream out2;
Life<ConwayCell> life2(life);
out1 << life;
out2 << life2;
ASSERT_EQ(out1.str(), out2.str());
}
TEST(LifeFixture, test_copy_construct_2) {
Life<ConwayCell> life(1, 1);
ConwayCell c('*');
life.add_cell(c);
ostringstream out1;
ostringstream out2;
Life<ConwayCell> life2(life);
out1 << life;
life2.do_generation();
out2 << life2;
ASSERT_NE(out1.str(), out2.str());
}
TEST(LifeFixture, test_copy_construct_3) {
Life<FredkinCell> life(2, 2);
FredkinCell c('0');
life.add_cell(c);
life.add_cell(c);
life.add_cell(c);
life.add_cell(c);
ostringstream out1;
ostringstream out2;
Life<FredkinCell> life2(life);
life.do_generation();
out1 << life;
life2.do_generation();
out2 << life2;
ASSERT_EQ(out1.str(), out2.str());
}
TEST(LifeFixture, test_assign_1) {
Life<FredkinCell> life(1, 1);
FredkinCell c('-');
life.add_cell(c);
ostringstream out1;
ostringstream out2;
Life<FredkinCell> life2(life);
out1 << life;
out2 << life2;
ASSERT_EQ(out1.str(), out2.str());
}
TEST(LifeFixture, test_assign_2) {
Life<FredkinCell> life(1, 1);
FredkinCell c('-');
life.add_cell(c);
ostringstream out1;
ostringstream out2;
Life<FredkinCell> life2(life);
out1 << life;
life2.do_generation();
out2 << life2;
ASSERT_NE(out1.str(), out2.str());
}
TEST(LifeFixture, test_assign_3) {
Life<ConwayCell> life(2, 2);
ConwayCell c('.');
life.add_cell(c);
life.add_cell(c);
life.add_cell(c);
life.add_cell(c);
ostringstream out1;
ostringstream out2;
life.do_generation();
Life<ConwayCell> life2(life);
out1 << life;
life2.do_generation();
out2 << life2;
ASSERT_NE(out1.str(), out2.str());
}
// Tests whether a cell dies if there are
// only dead cells around it
TEST(LifeFixture, test_do_generation_1) {
Life<ConwayCell> life(2, 2);
ConwayCell c1('*');
ConwayCell c2('.');
life.add_cell(c1);
life.add_cell(c2);
life.add_cell(c2);
life.add_cell(c2);
life.do_generation();
ostringstream out;
out << life;
ASSERT_EQ("Generation = 1, Population = 0.\n..\n..\n\n", out.str());
}
// Tests whether a cell becomes a life if it
// has three neighbors around it
TEST(LifeFixture, test_do_generation_2) {
Life<ConwayCell> life(2, 2);
ConwayCell c1('.');
ConwayCell c2('*');
life.add_cell(c1);
life.add_cell(c2);
life.add_cell(c2);
life.add_cell(c2);
life.do_generation();
ostringstream out;
out << life;
ASSERT_EQ("Generation = 1, Population = 4.\n**\n**\n\n", out.str());
}
// Tests whether a fredkin cell becomes dead if
// two neighbors are dead
TEST(LifeFixture, test_do_generation_3) {
Life<ConwayCell> life(2, 2);
ConwayCell c1('*');
ConwayCell c2('.');
ConwayCell c3('.');
ConwayCell c4('.');
life.add_cell(c1);
life.add_cell(c2);
life.add_cell(c3);
life.add_cell(c4);
life.do_generation();
ostringstream out;
out << life;
ASSERT_EQ("Generation = 1, Population = 0.\n..\n..\n\n", out.str());
}
TEST(LifeFixture, test_do_generation_4) {
Life<FredkinCell> life(2, 2);
FredkinCell c1('-');
FredkinCell c2('0');
FredkinCell c3('0');
FredkinCell c4('0');
life.add_cell(c1);
life.add_cell(c2);
life.add_cell(c3);
life.add_cell(c4);
life.do_generation();
ostringstream out;
out << life;
ASSERT_EQ("Generation = 1, Population = 2.\n-1\n1-\n\n", out.str());
}