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 |
Tags
- Quartz
- import
- Mac
- maVen
- Eclipse
- Source
- lsof
- 줄바꿈 문자
- web.xml
- GIT
- vscode
- Windows 10
- tomcat
- 네트워크
- Windows
- profile
- VirtualBox
- JavaScript
- resource
- 단축키
- port
- plugin
- context
- xargs
- find
- grep
- bash
- IntelliJ
- netsh
- ssh
Archives
- Today
- Total
develog
JUnit 테스트 메소드 종류 본문
assertSame("1", "1");
assertNotSame("1", "1");
assertNull("");
assertNotNull(null);
assertTrue(false);
assertFalse(false);
assertArrayEquals(expecteds, actuals);
assertThat("1", 1);
fail(message);
'Dev > junit' 카테고리의 다른 글
JUnit Parameterized Test (0) | 2012.12.02 |
---|---|
JUnit4 hamcrest (0) | 2012.11.28 |
JUnit 4 Assert (0) | 2012.11.07 |
[junit] JUnit 4 Annotations (0) | 2012.11.07 |
JUnit (0) | 2012.05.04 |
Comments