We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4664d14 commit 6238afaCopy full SHA for 6238afa
src/test/java/org/jgroups/ping/kube/test/JsonTest.java
@@ -7,6 +7,7 @@
7
import java.util.List;
8
9
import static org.jgroups.protocols.kubernetes.Utils.readFileToString;
10
+import static org.junit.Assert.assertEquals;
11
12
/**
13
* @author Bela Ban
@@ -27,6 +28,7 @@ public void testJsonParser() throws Exception {
27
28
Json phase=status.at("phase");
29
Json ip=status.at("podIP");
30
System.out.printf("%s -> %s\n", ip, phase);
31
+ assertEquals("Running", phase.asString());
32
}
33
34
/* JsonObject root=JsonParser.object().from(input);
0 commit comments