use of org.openkilda.northbound.dto.v1.flows.UniFlowPingOutput in project open-kilda by telstra.
the class JsonSerializationTest method verificationOutputTest.
@Test
public void verificationOutputTest() throws IOException {
UniFlowPingOutput verification = new UniFlowPingOutput(true, "err-test", 10);
PingOutput dto = new PingOutput(FLOW_ID, verification, verification, "error");
assertEquals(dto, pass(dto, PingOutput.class));
}
use of org.openkilda.northbound.dto.v1.flows.UniFlowPingOutput in project open-kilda by telstra.
the class JsonSerializationTest method uniFlowPingOutputTest.
@Test
public void uniFlowPingOutputTest() throws IOException {
UniFlowPingOutput dto = new UniFlowPingOutput(true, "err-test", 10);
assertEquals(dto, pass(dto, UniFlowPingOutput.class));
}
Aggregations