use of org.guvnor.ala.wildfly.access.exceptions.WildflyClientException in project kie-wb-common by kiegroup.
the class WildflyClientServiceImplTest method testTestConnectionFailed.
@Test
public void testTestConnectionFailed() {
when(wfClient.testConnection()).thenThrow(new WildflyClientException(ERROR_MESSAGE));
TestConnectionResult result = wildflyClientService.testConnection(DUMMY_VALUE, DUMMY_INT_VALUE, DUMMY_INT_VALUE, DUMMY_VALUE, DUMMY_VALUE);
assertTrue(result.getManagementConnectionError());
assertEquals(ERROR_MESSAGE, result.getManagementConnectionMessage());
}
Aggregations