JUnit 3.8 과 JUnit 4의 차이
http://www.devx.com/Java/Article/31983/1954?pf=true
위 링크에 아주 잘 나와있네요.
suit을 사용법을 제대로 몰랐는데 보니깐 매우 간단하네요.
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
CalculatorTest.class, SquareTest.class
})
public class AllCalculatorTests {
}
위에서 분홍색에 해당하는 부분만 자신이 테스트 하고 싶은 테스트 클래스들을 추가해주면 됩니다.