use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerWhenAddressReceiveOnly.
@Test
public void shouldValidateServerWhenAddressReceiveOnly() {
JsonObject config = schema.validate("server.when.address.receive.only.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerWhenAddressSendOnly.
@Test
public void shouldValidateServerWhenAddressSendOnly() {
JsonObject config = schema.validate("server.when.address.send.only.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientWhenAddressSendOnly.
@Ignore("TODO")
@Test
public void shouldValidateClientWhenAddressSendOnly() {
JsonObject config = schema.validate("client.when.address.send.only.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClient.
@Ignore("TODO")
@Test
public void shouldValidateClient() {
JsonObject config = schema.validate("client.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerWhen.
@Test
public void shouldValidateServerWhen() {
JsonObject config = schema.validate("server.when.json");
assertThat(config, not(nullValue()));
}
Aggregations