-
Notifications
You must be signed in to change notification settings - Fork 0
/
day5-test.cpp
47 lines (31 loc) · 879 Bytes
/
day5-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
#include <gtest/gtest.h>
#include <fstream>
#include <iostream>
#include <string>
#include "main.h"
using namespace std;
class Day5Test : public ::testing::Test{};
TEST_F( Day5Test, PuzzleInputPart1 ) {
ifstream is( "day5.input" );
ostringstream os;
mainfunc( is, os, Part::PART1 );
EXPECT_EQ( "315613\n", os.str() );
}
TEST_F( Day5Test, Description1_1 ) {
istringstream is( "0\n3\n0\n1\n-3\n" );
ostringstream os;
mainfunc( is, os, Part::PART1 );
EXPECT_EQ( "5\n", os.str() );
}
TEST_F( Day5Test, PuzzleInputPart2 ) {
ifstream is( "day5.input" );
ostringstream os;
mainfunc( is, os, Part::PART2 );
EXPECT_EQ( "22570529\n", os.str() );
}
TEST_F( Day5Test, Description2_1 ) {
istringstream is( "0\n3\n0\n1\n-3\n" );
ostringstream os;
mainfunc( is, os, Part::PART2 );
EXPECT_EQ( "10\n", os.str() );
}