JUnit 4 - annotation 설명
ITWeb/개발일반 2010. 3. 16. 17:00@Test
public void blahMethod() {
String result = "blah";
assertEquals("blah", result);
}
@Before & @After annotation
각각 setup 과 tearDown method 를 위한 annotation
@Before
public void blahBeforeTest() {
blah = new Blah();
}
@After
public void blahAfterTest() {
blah = null;
}
@BeforeClass & @AfterClass
@BeforeClass
public void blahBeforeTest() {
}
@AfterClass
public void blahAfterTest() {
}
@Ignore
@기타
@Test(timeout = 1000) : 시정한 시간이 경과 하면 test fail. (miiseconds)
사용하면 편한 mock 객체
- easymock
- mockito