use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateCacheWhenTopic.
@Test
public void shouldValidateCacheWhenTopic() {
JsonObject config = schema.validate("cache.when.topic.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateHttp11Client.
@Test
public void shouldValidateHttp11Client() {
JsonObject config = schema.validate("v1.1/client.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateHttp11ServerOverride.
@Test
public void shouldValidateHttp11ServerOverride() {
JsonObject config = schema.validate("v1.1/server.override.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateHttp2Client.
@Test
public void shouldValidateHttp2Client() {
JsonObject config = schema.validate("v2/client.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateHttp11ClientOverride.
@Test
public void shouldValidateHttp11ClientOverride() {
JsonObject config = schema.validate("v1.1/client.override.json");
assertThat(config, not(nullValue()));
}
Aggregations