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