use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientWhenTopicSubscribeOnly.
@Ignore("TODO")
@Test
public void shouldValidateClientWhenTopicSubscribeOnly() {
JsonObject config = schema.validate("client.when.topic.subscribe.only.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientWhenTopicOrSessions.
@Ignore("TODO")
@Test
public void shouldValidateClientWhenTopicOrSessions() {
JsonObject config = schema.validate("client.when.topic.or.sessions.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerWhenTopic.
@Test
public void shouldValidateServerWhenTopic() {
JsonObject config = schema.validate("server.when.topic.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateProxyWithTopicDynamic.
@Test
public void shouldValidateProxyWithTopicDynamic() {
JsonObject config = schema.validate("proxy.with.topic.dynamic.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateProxyWithTopic.
@Test
public void shouldValidateProxyWithTopic() {
JsonObject config = schema.validate("proxy.with.topic.json");
assertThat(config, not(nullValue()));
}
Aggregations