day05
This commit is contained in:
41
app/src/test/kotlin/day05/Day05Test.kt
Normal file
41
app/src/test/kotlin/day05/Day05Test.kt
Normal file
@@ -0,0 +1,41 @@
|
||||
package day05
|
||||
|
||||
import kotlin.test.Test
|
||||
import util.InputDownloader
|
||||
|
||||
class Day05Test {
|
||||
val dayNum = 5
|
||||
val day = Day05()
|
||||
|
||||
val input = InputDownloader().getInput(dayNum)
|
||||
val example = InputDownloader().getExample(dayNum)
|
||||
|
||||
@Test fun part1Example() {
|
||||
part1(example, 143)
|
||||
}
|
||||
|
||||
@Test fun part1Solution() {
|
||||
part1(input, 6041)
|
||||
}
|
||||
|
||||
@Test fun part2Example() {
|
||||
part2(example, 123)
|
||||
}
|
||||
|
||||
@Test fun part2Solution() {
|
||||
part2(input, 4884)
|
||||
}
|
||||
|
||||
|
||||
fun part1(input: String, expected: Int) {
|
||||
val output = day.part1(input)
|
||||
println("output: $output")
|
||||
assert(output == expected)
|
||||
}
|
||||
|
||||
fun part2(input: String, expected: Int) {
|
||||
val output = day.part2(input)
|
||||
println("output: $output")
|
||||
assert(output == expected)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user