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
- import
- Quartz
- lsof
- 네트워크
- Source
- JavaScript
- xargs
- tomcat
- profile
- 단축키
- Windows
- IntelliJ
- context
- port
- resource
- GIT
- plugin
- Eclipse
- 줄바꿈 문자
- ssh
- VirtualBox
- find
- grep
- netsh
- bash
- Windows 10
- Mac
- vscode
- maVen
- web.xml
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