elvyssoares

JerseyClientBuilderTest - Original - Simplified

Jun 5th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. @Test
  2. public void test() throws Exception {
  3.     try {
  4.         testObject.exceptionRaisingMethod();
  5.         Assert.fail("Specific exception was not raised");
  6.     } catch (Exception e) {
  7.         // Assert exception message
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment