-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay8KtTest.kt
31 lines (25 loc) · 906 Bytes
/
Day8KtTest.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
package aoc2020.day08
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
internal class Day8KtTest {
private val input = readInputToMap("src/main/kotlin/aoc2020/day08/input")
private val input0 = readInputToMap("src/main/kotlin/aoc2020/day08/input0")
private val input0Modif = readInputToMap("src/main/kotlin/aoc2020/day08/input0_modif")
@Test
fun readInputToMap() {
println(input0)
println(input)
println(input0Modif)
}
@Test
fun playTheGame() {
assertEquals(GameOver(5, false), playTheGame(input0))
assertEquals(GameOver(8, true), playTheGame(input0Modif))
assertEquals(GameOver(1200, false), playTheGame(input))
}
@Test
fun fixInstructionAndPlay() {
assertEquals(8, fixInstructionAndPlay(input0))
assertEquals(1023, fixInstructionAndPlay(input))
}
}