Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- profile
- web.xml
- GIT
- Windows 10
- lsof
- Eclipse
- xargs
- Windows
- 줄바꿈 문자
- VirtualBox
- Mac
- import
- ssh
- Source
- plugin
- 단축키
- IntelliJ
- 네트워크
- resource
- netsh
- context
- vscode
- find
- maVen
- bash
- grep
- JavaScript
- Quartz
- tomcat
- port
Archives
- Today
- Total
develog
JUnit 4 Test Suite 본문
package test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({
CalculatorTest.class
, CalculatorTest2.class
})
public class AllTests {}
'Dev > junit' 카테고리의 다른 글
JUnit Ant build.xml (1) | 2012.12.05 |
---|---|
spring 2.5 에서는 junit 4.4 버전 사용 (0) | 2012.12.05 |
JUnit Parameterized Test (0) | 2012.12.02 |
JUnit4 hamcrest (0) | 2012.11.28 |
JUnit 4 Assert (0) | 2012.11.07 |
Comments