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