Junit 에서 @Test 코드 실행시 코드상에서 순차적으로 실행되는 것으로 생각되는 분들이 많은데.
사실은.. 순서를 보장하지 않는다.
참고 내용
http://junit.sourceforge.net/doc/faq/faq.htm
package junitfaq;
import org.junit.*;
import static org.junit.Assert.*;
import java.util.*;
public class SimpleTest {
private Collection<Object> collection;
@Before
public void setUp() {
collection = new ArrayList<Object>();
}
@Test
public void testEmptyCollection() {
assertTrue(collection.isEmpty());
}
@Test
public void testOneItemCollection() {
collection.add("itemA");
assertEquals(1, collection.size());
}
}
Given this test, the methods might execute in the following order:
setUp() testEmptyCollection() setUp() testOneItemCollection()
The ordering of test-method invocations is not guaranteed, so testOneItemCollection()
might be executed before testEmptyCollection()
. But it doesn't matter, because each method gets its own instance of the collection
.
'general java' 카테고리의 다른 글
POJO java 코드 깜끔하게 (0) | 2010.11.05 |
---|---|
Referenced file contains errors (0) | 2010.09.10 |
JDK Dynamic Proxy와 CGLIB Proxy에 대한 이해 (0) | 2010.07.15 |
jdbc 2.0 스펙을 구현하는 jdbc driver 상에서 statement caching을 지원하고 싶을때, (0) | 2010.07.12 |
DBCP 기본 정보 (0) | 2010.07.07 |