package com.example.modifier; import org.junit.Test; import static org.junit.Assert.*; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; /** * Example local unit test, which will execute on the development machine (host). * * @see Testing documentation */ public class ExampleUnitTest { @Test public void addition_isCorrect() { System.out.println(LocalDateTime.parse("2020-01-01T00:00:00Z", DateTimeFormatter.ISO_ZONED_DATE_TIME)); } public static void main(String[] args) { } }