tracks/kotlin/exercises/gigasecond/src/test/kotlin/GigasecondTest.kt in trackler-2.2.1.52 vs tracks/kotlin/exercises/gigasecond/src/test/kotlin/GigasecondTest.kt in trackler-2.2.1.53
- old
+ new
@@ -5,11 +5,10 @@
import java.time.Month
import kotlin.test.assertEquals
class GigasecondTest {
-
@Test
fun modernTime() {
val gigaSecond = Gigasecond(LocalDate.of(2011, Month.APRIL, 25))
assertEquals(LocalDateTime.of(2043, Month.JANUARY, 1, 1, 46, 40), gigaSecond.date)
@@ -44,6 +43,7 @@
fun withFullTimeSpecifiedAndDayRollover() {
val gigaSecond = Gigasecond(LocalDateTime.of(2015, Month.JANUARY, 24, 23, 59, 59))
assertEquals(LocalDateTime.of(2046, Month.OCTOBER, 3, 1, 46, 39), gigaSecond.date)
}
+
}