use of com.cribbstechnologies.clients.mandrill.model.response.users.PingResponse in project Java-Mandrill-Wrapper by cribbstechnologies.
the class UsersTest method testPing2.
@Test
public void testPing2() {
BaseMandrillRequest baseRequest = new BaseMandrillRequest();
try {
PingResponse pingResponse = usersRequest.performPing2(baseRequest);
assertEquals("PONG!", pingResponse.getPingResponse());
} catch (RequestFailedException e) {
e.printStackTrace();
fail(e.getMessage());
}
}
Aggregations