use of org.n52.svalbard.decode.json.ObservationDecoder in project arctic-sea by 52North.
the class TruthObservationDecodingTest method before.
@Before
public void before() throws DecodingException {
this.decoder = new ObservationDecoder();
this.observation = decoder.decodeJSON(json, true);
}
use of org.n52.svalbard.decode.json.ObservationDecoder in project arctic-sea by 52North.
the class CategoryObservationDecodingTest method before.
@Before
public void before() throws DecodingException {
this.decoder = new ObservationDecoder();
this.observation = decoder.decodeJSON(json, true);
}
use of org.n52.svalbard.decode.json.ObservationDecoder in project arctic-sea by 52North.
the class CountObservationDecodingTest method before.
@Before
public void before() throws DecodingException {
this.decoder = new ObservationDecoder();
this.observation = decoder.decodeJSON(json, true);
}
Aggregations