-
Notifications
You must be signed in to change notification settings - Fork 0
/
Day19Test.java
49 lines (39 loc) · 1.49 KB
/
Day19Test.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 Day19Test extends AbstractTest {
private Day19 solution;
@BeforeAll
static void setUp() {
INPUT_PATH = "year2023/Day19_Input.txt";
SAMPLE_INPUT_PATH = "year2023/Day19_SampleInput.txt";
}
@BeforeEach
void init() {
solution = new Day19();
}
@ParameterizedTest
@MethodSource("inputDataSource")
void testSolver(Solution.PART_NUMBER part, List<String> inputLines, long expectedSum) {
long computedSum = solution.solve(part, inputLines);
assertEquals(expectedSum, computedSum);
}
static Stream<Arguments> inputDataSource() {
List<String> sampleInputLines = getSampleInput();
List<String> inputLines = getInput();
return Stream.of(
Arguments.of(Solution.PART_NUMBER.ONE, sampleInputLines, 19114),
Arguments.of(Solution.PART_NUMBER.ONE, inputLines, 480738)
// Arguments.of(Solution.PART_NUMBER.TWO, sampleInputLines, 0),
// Arguments.of(Solution.PART_NUMBER.TWO, inputLines, 0)
);
}
}