use of org.opensmartgridplatform.adapter.ws.schema.smartmetering.bundle.AdministrativeStatusResponse in project open-smart-grid-platform by OSGP.
the class BundledGetAdministrativeStatusSteps method theBundleResponseShouldContainAGetAdministrativeStatusResponse.
@Then("^the bundle response should contain a get administrative status response$")
public void theBundleResponseShouldContainAGetAdministrativeStatusResponse() throws Throwable {
final Response response = this.getNextBundleResponse();
assertThat(response instanceof AdministrativeStatusResponse).as("Not a valid response").isTrue();
}
Aggregations