@@ -80,28 +80,29 @@ public Long apply(StructReader input) {
8080 }
8181
8282 @ Rule
83- public TestWatcher testWatcher = new TestWatcher () {
84- @ Override
85- protected void succeeded (Description description ) {
86- System .out .printf (
87- "[%s][%s] Succeeded test %s\n " ,
88- OffsetDateTime .now (), Thread .currentThread ().getName (), description .getMethodName ());
89- }
83+ public TestWatcher testWatcher =
84+ new TestWatcher () {
85+ @ Override
86+ protected void succeeded (Description description ) {
87+ System .out .printf (
88+ "[%s][%s] Succeeded test %s\n " ,
89+ OffsetDateTime .now (), Thread .currentThread ().getName (), description .getMethodName ());
90+ }
9091
91- @ Override
92- protected void failed (Throwable e , Description description ) {
93- System .out .printf (
94- "[%s][%s] Failed test %s\n " ,
95- OffsetDateTime .now (), Thread .currentThread ().getName (), description .getMethodName ());
96- }
92+ @ Override
93+ protected void failed (Throwable e , Description description ) {
94+ System .out .printf (
95+ "[%s][%s] Failed test %s\n " ,
96+ OffsetDateTime .now (), Thread .currentThread ().getName (), description .getMethodName ());
97+ }
9798
98- @ Override
99- protected void starting (Description description ) {
100- System .out .printf (
101- "[%s][%s] Starting test %s\n " ,
102- OffsetDateTime .now (), Thread .currentThread ().getName (), description .getMethodName ());
103- }
104- };
99+ @ Override
100+ protected void starting (Description description ) {
101+ System .out .printf (
102+ "[%s][%s] Starting test %s\n " ,
103+ OffsetDateTime .now (), Thread .currentThread ().getName (), description .getMethodName ());
104+ }
105+ };
105106
106107 private static final ToLongTransformer TO_LONG = new ToLongTransformer ();
107108
0 commit comments