Skip to content

Commit 1456dc2

Browse files
committed
Clarify test outputs on console
Signed-off-by: Peter Ansell <p_ansell@yahoo.com>
1 parent 2ac517f commit 1456dc2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

core/src/test/java/com/github/jsonldjava/core/JsonLdFramingTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,11 @@ public void testFrame0003() throws IOException, JsonLdError {
5353

5454
final Object out = JsonUtils
5555
.fromInputStream(getClass().getResourceAsStream("/custom/frame-0003-out.jsonld"));
56+
System.out.println("Input:");
5657
System.out.println(JsonUtils.toPrettyString(in));
58+
System.out.println("Expected Output:");
5759
System.out.println(JsonUtils.toPrettyString(out));
60+
System.out.println("Actual Output:");
5861
System.out.println(JsonUtils.toPrettyString(frame2));
5962
assertEquals(out, frame2);
6063
}

0 commit comments

Comments
 (0)