JUnit4 에서 Exception 발생이 나야 하는 Test 인 경우를 캐치 하는 방법

@Test(expected=IndexOutOfBoundsException.class)
 public void verifyZipCodeGroupException() throws Exception{		
  Matcher mtcher = this.pattern.matcher("22101-5051");
  boolean isValid = mtcher.matches();			
  mtcher.group(2);		
 }
 
우와 같이 @Test annotation 에 expected argument를 넘겨 주면 된다.  

+ Recent posts