use of com.google.api.ads.admanager.axis.v202205.Proposal in project caom2db by opencadc.
the class CaomRepoTupleTests method testNullDates.
@Test
public void testNullDates() throws Exception {
final String observationID = generateID("testNullDates");
final String path = TEST_COLLECTION + "/" + observationID;
final String productID = generateID(TEST_PRODUCT_ID_PREFIX);
final String uri = SCHEME + path;
final Observation observation = new SimpleObservation(TEST_COLLECTION, observationID);
observation.proposal = new Proposal("proposal777_nulldates");
final Plane plane = new Plane(productID);
observation.getPlanes().add(plane);
// ensurePutAndDelete(observation, uri);
sendObservation("PUT", observation, subject1, 200, "OK", null);
}
Aggregations