-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay07Test.java
49 lines (39 loc) · 1.47 KB
/
Day07Test.java
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
package net.bqc.aoc.year2023;
import net.bqc.aoc.AbstractTest;
import net.bqc.aoc.Solution;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import java.util.List;
import java.util.stream.Stream;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class Day07Test extends AbstractTest {
private Day07 solution;
@BeforeAll
static void setUp() {
INPUT_PATH = "year2023/Day07_Input.txt";
SAMPLE_INPUT_PATH = "year2023/Day07_SampleInput.txt";
}
@BeforeEach
void init() {
solution = new Day07();
}
@ParameterizedTest
@MethodSource("inputDataSource")
void testSolver(Solution.Part part, List<String> inputLines, long expectedOutput) {
long computedOutput = solution.solve(part, inputLines);
assertEquals(expectedOutput, computedOutput);
}
static Stream<Arguments> inputDataSource() {
List<String> sampleInputLines = getSampleInput();
List<String> inputLines = getInput();
return Stream.of(
Arguments.of(Solution.Part.ONE, sampleInputLines, 6440),
Arguments.of(Solution.Part.ONE, inputLines, 251287184),
Arguments.of(Solution.Part.TWO, sampleInputLines, 5905),
Arguments.of(Solution.Part.TWO, inputLines, 250757288)
);
}
}