-
Notifications
You must be signed in to change notification settings - Fork 0
/
day8-test.cpp
56 lines (39 loc) · 1.07 KB
/
day8-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
#include <gtest/gtest.h>
#include <fstream>
#include <iostream>
#include <string>
#include "main.h"
using namespace std;
class Day8Test : public ::testing::Test{};
TEST_F( Day8Test, PuzzleInputPart1 ) {
ifstream is( "day8.input" );
ostringstream os;
mainfunc( is, os, Part::PART1 );
EXPECT_EQ( "7296\n", os.str() );
}
TEST_F( Day8Test, Description1_1 ) {
stringstream is;
is << "b inc 5 if a > 1\n";
is << "a inc 1 if b < 5\n";
is << "c dec -10 if a >= 1\n";
is << "c inc -20 if c == 10\n";
ostringstream os;
mainfunc( is, os, Part::PART1 );
EXPECT_EQ( "1\n", os.str() );
}
TEST_F( Day8Test, PuzzleInputPart2 ) {
ifstream is( "day8.input" );
ostringstream os;
mainfunc( is, os, Part::PART2 );
EXPECT_EQ( "8186\n", os.str() );
}
TEST_F( Day8Test, Description2_1 ) {
stringstream is;
is << "b inc 5 if a > 1\n";
is << "a inc 1 if b < 5\n";
is << "c dec -10 if a >= 1\n";
is << "c inc -20 if c == 10\n";
ostringstream os;
mainfunc( is, os, Part::PART2 );
EXPECT_EQ( "10\n", os.str() );
}