コード例 #1
0
 @Test
 public void testJenkinsConnectivityBroken() throws IOException {
   Mockito.when(client.get("/")).thenThrow(IOException.class);
   assertEquals(server.isRunning(), false);
 }
コード例 #2
0
 @Test
 public void testJenkinsConnectivity() throws IOException {
   Mockito.when(client.get("/")).thenReturn("<xml>not a real response</xml>");
   assertEquals(server.isRunning(), true);
 }