use of org.n52.svalbard.decode.OperationDecoderKey in project arctic-sea by 52North.
the class AbstractXmlBindingTest method test_GetObs.
@Test
public void test_GetObs() throws CodedException {
DecoderKey decoderKey = binding.getDecoderKey(xmlStringGetObs, characterEncoding);
if (decoderKey instanceof OperationDecoderKey) {
assertThat(((OperationDecoderKey) decoderKey).getService(), is("SOS"));
assertThat(((OperationDecoderKey) decoderKey).getVersion(), is("2.0.0"));
assertThat(((OperationDecoderKey) decoderKey).getOperation(), is("GetObservation"));
}
}
use of org.n52.svalbard.decode.OperationDecoderKey in project arctic-sea by 52North.
the class AbstractXmlBindingTest method test_GetCaps.
@Test
public void test_GetCaps() throws CodedException {
DecoderKey decoderKey = binding.getDecoderKey(xmlStringGetCaps, characterEncoding);
if (decoderKey instanceof OperationDecoderKey) {
assertThat(((OperationDecoderKey) decoderKey).getService(), is("SOS"));
assertThat(((OperationDecoderKey) decoderKey).getOperation(), is("GetCapabilities"));
}
}
Aggregations