use of org.n52.shetland.w3c.SchemaLocation in project arctic-sea by 52North.
the class FesEncoderv20Test method should_return_correct_schema_location.
@Test
public final void should_return_correct_schema_location() {
assertThat(fesEncoder.getSchemaLocations().size(), is(1));
final SchemaLocation schemLoc = fesEncoder.getSchemaLocations().iterator().next();
assertThat(schemLoc.getNamespace(), is("http://www.opengis.net/fes/2.0"));
assertThat(schemLoc.getSchemaFileUrl(), is("http://schemas.opengis.net/filter/2.0/filterAll.xsd"));
}
Aggregations