Skip to content
This repository was archived by the owner on Nov 7, 2024. It is now read-only.

Commit 93d2c56

Browse files
committed
add missing @test
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
1 parent fdeeeb5 commit 93d2c56

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/src/test/java/org/glassfish/json/tests/JsonValueTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ public void arrayIsNull() {
9797
JsonValue.EMPTY_JSON_ARRAY.isNull(0);
9898
}
9999

100+
@Test
100101
public void arrayMethods() {
101102
Assert.assertEquals(JsonValue.ValueType.ARRAY, JsonValue.EMPTY_JSON_ARRAY.getValueType());
102103
Assert.assertEquals(Collections.<JsonObject>emptyList(), JsonValue.EMPTY_JSON_ARRAY.getValuesAs(JsonObject.class));
@@ -131,6 +132,7 @@ public void objectIsNull() {
131132
JsonValue.EMPTY_JSON_OBJECT.isNull("???");
132133
}
133134

135+
@Test
134136
public void objectMethods() {
135137
Assert.assertNull(JsonValue.EMPTY_JSON_OBJECT.getJsonArray("pole"));
136138
Assert.assertNull(JsonValue.EMPTY_JSON_OBJECT.getJsonObject("objekt"));

0 commit comments

Comments
 (0)