Update things
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
package be.vandewalleh.aoc.days
|
||||
|
||||
import be.vandewalleh.aoc.utils.input.Input
|
||||
import be.vandewalleh.aoc.utils.input.createDay
|
||||
import be.vandewalleh.aoc.utils.factory.createDay
|
||||
import org.assertj.core.api.Assertions.assertThat
|
||||
import org.junit.jupiter.api.Disabled
|
||||
import org.junit.jupiter.api.Nested
|
||||
import org.junit.jupiter.api.Test
|
||||
|
||||
@@ -22,7 +22,7 @@ class Day03Test {
|
||||
"#.##...#...",
|
||||
"#...##....#",
|
||||
".#..#...#.#",
|
||||
).let { Input(it) }
|
||||
)
|
||||
|
||||
private val day03 = Day03(example)
|
||||
|
||||
@@ -43,11 +43,13 @@ class Day03Test {
|
||||
private val day03 = createDay<Day03>()
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
fun `part1 result`() {
|
||||
assertThat(day03.part1()).isEqualTo(294)
|
||||
}
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
fun `part2 result`() {
|
||||
assertThat(day03.part2()).isEqualTo(5774564250)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user