-
Notifications
You must be signed in to change notification settings - Fork 0
/
Day20Test.kt
51 lines (43 loc) · 1.31 KB
/
Day20Test.kt
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
package io.dmitrijs.aoc2017
import org.junit.jupiter.api.DisplayName
import org.junit.jupiter.api.Nested
import kotlin.test.Test
import kotlin.test.assertEquals
@DisplayName("Day 20")
internal class Day20Test {
private val problemInput = Resources.resourceAsLines("day20")
@Nested
@DisplayName("Puzzle 1")
inner class Puzzle1 {
@Test
fun `solves example`() {
val exampleInput = """
p=<3,0,0>, v=<2,0,0>, a=<-1,0,0>
p=<4,0,0>, v=<0,0,0>, a=<-2,0,0>
""".trimIndent().lines()
assertEquals(0, Day20(exampleInput).puzzle1())
}
@Test
fun `solves problem`() {
assertEquals(91, Day20(problemInput).puzzle1())
}
}
@Nested
@DisplayName("Puzzle 2")
inner class Puzzle2 {
@Test
fun `solves example`() {
val exampleInput = """
p=<-6,0,0>, v=<3,0,0>, a=<0,0,0>
p=<-4,0,0>, v=<2,0,0>, a=<0,0,0>
p=<-2,0,0>, v=<1,0,0>, a=<0,0,0>
p=<3,0,0>, v=<-1,0,0>, a=<0,0,0>
""".trimIndent().lines()
assertEquals(1, Day20(exampleInput).puzzle2())
}
@Test
fun `solves problem`() {
assertEquals(567, Day20(problemInput).puzzle2())
}
}
}