"Failed to add event scale-up to application springeap6 due to: Cannot scale a non-scalable application"));
final IApplication app = domain.getApplicationByName("springeap6");
// operation
try {
app.scaleUp();
fail("Expected an exception here..");
} catch (OpenShiftEndpointException e) {
// verifications
assertThat(e.getCause()).isInstanceOf(InternalServerErrorException.class);