use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClient.
@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 shouldValidateServerTcp4.
@Test
public void shouldValidateServerTcp4() {
JsonObject config = schema.validate("server.tcp4.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerTcp6.
@Test
public void shouldValidateServerTcp6() {
JsonObject config = schema.validate("server.tcp6.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientCaCerts.
@Test
public void shouldValidateClientCaCerts() {
JsonObject config = schema.validate("client.cacerts.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientSni.
@Test
public void shouldValidateClientSni() {
JsonObject config = schema.validate("client.sni.json");
assertThat(config, not(nullValue()));
}
Aggregations