-
Notifications
You must be signed in to change notification settings - Fork 0
/
Day06Test.kt
40 lines (34 loc) · 942 Bytes
/
Day06Test.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
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 6")
internal class Day06Test {
private val problemInput = Resources.resourceAsText("day06")
private val exampleInput = "0 2 7 0"
@Nested
@DisplayName("Puzzle 1")
inner class Puzzle1 {
@Test
fun `solves example`() {
assertEquals(5, Day06(exampleInput).puzzle1())
}
@Test
fun `solves problem`() {
assertEquals(5_042, Day06(problemInput).puzzle1())
}
}
@Nested
@DisplayName("Puzzle 2")
inner class Puzzle2 {
@Test
fun `solves example`() {
assertEquals(4, Day06(exampleInput).puzzle2())
}
@Test
fun `solves problem`() {
assertEquals(1_086, Day06(problemInput).puzzle2())
}
}
}