[Kotlin] String to LocalDateTime parse
말머리가 Kotlin인 이유는 kotlin으로 작성했기 때문.. java라고 봐도 무방하다. import java.time.LocalDateTime.of class LocalDateTimeTest { @Test fun test() { // expect assertEquals(of(2019, 12, 4, 12, 3, 12), "2019-12-04 12:03:12".toLocalDateTime()) assertEquals(of(2019, 12, 4, 12, 3), "2019-12-04 12:03".toLocalDateTime()) assertEquals(of(2019, 12, 4, 12, 3,12,100000000), "2019-12-04 12:03:12.1".toLocalDateTime()) } } 테스트..
2019. 12. 7.