Example #1
0
 @Test
 public void testDeltaServiceNoHistoryDelta() throws Exception {
   GetDeltaRequest request =
       new GetDeltaRequest(
           application.getApplicationToken(),
           EndpointObjectHash.fromSha1(endpointConfiguration.getConfiguration()),
           true);
   request.setEndpointProfile(endpointProfile);
   GetDeltaResponse response = deltaService.getDelta(request);
   assertNotNull(response);
   assertEquals(GetDeltaResponse.GetDeltaResponseType.NO_DELTA, response.getResponseType());
   assertNull(response.getDelta());
   assertNull(response.getConfSchema());
 }