How to check for checked exceptions with JUnit 4

Code sample:

  @Test(expected = NoMatchFoundException.class)
  public void testGetRenamedFilePathWorstCase() throws NoMatchFoundException
  {
    String logEntry = "   A /my/folder/with/a/file.txt";
    RegExMatcher instance = new RegExMatcher();
    String actual = instance.getRenamedFilePath(logEntry);
    fail("Should have raised a NoMatchFoundException.");
  }

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.