use of com.bakdata.conquery.models.error.ConqueryError in project conquery by bakdata.
the class SerializationTests method executionCreationPlanError.
@Test
public void executionCreationPlanError() throws JSONException, IOException {
ConqueryError error = new ConqueryError.ExecutionCreationPlanError();
SerializationTestUtil.forType(ConqueryError.class).test(error);
}
use of com.bakdata.conquery.models.error.ConqueryError in project conquery by bakdata.
the class SerializationTests method executionCreationResolveError.
@Test
public void executionCreationResolveError() throws JSONException, IOException {
ConqueryError error = new ConqueryError.ExecutionCreationResolveError(new DatasetId("test"));
SerializationTestUtil.forType(ConqueryError.class).test(error);
}
Aggregations