오늘도 행복하다.
HOME
TAG
MEDIA
LOCATION
GUEST
ADMIN
WRITE
Category
분류 전체보기
(1012)
행복이야기
(24)
日常茶飯事
(601)
雜동사니
(285)
로그
(1)
ㅈㅇ.삭제.메모
(0)
산행->이동
(0)
野生野死
(38)
꺼리
(0)
업무
(1)
미완
(0)
운전, 車
(0)
상단, 공지, 계속
(0)
캠핑, 야영, 바깥놀이
(1)
eToy
(0)
Recent Article
Recent comment
My Link
지원이랑
Notice
Tag Cloud
테스트@
야구
QPA2018 프로젝트
sap
자료
여의도
Enterprise Portal
Tomcat
9
노숙일지
[비교]
Eclipse
NTC 프로젝트
YNP 프로젝트
wsp나중에
IKP 프로젝트
grails
정리필요
먹거리
갈거야
Subversion
YBD 프로젝트
山行
영어
PHT 프로젝트
1
Windows
쇼핑
아키공부@
WSP 프로젝트
Calender
«
2024/12
»
일
월
화
수
목
금
토
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
Archive
'Short-circuit'에 해당되는 글
1
건
2010.12.20
Short-circuit 확인 테스트 코드
Short-circuit 확인 테스트 코드
日常茶飯事
2010. 12. 20. 06:30
Posted by
pantarei
Short-circuit 확인 테스트 코드
private String s; @Test(expected = NullPointerException.class) public void testShortCircuit1(){ assertFalse((s != null) & (s.length() > 0)); } @Test public void testShortCircuit2(){ assertFalse((s != null) && (s.length() > 0)); } @Test(expected = NullPointerException.class) public void testShortCircuit3(){ assertFalse((s == null) | (s.length() == 0)); } @Test public void testShortCircuit4(){ assertTrue((s == null) || (s.length() == 0)); }
공유하기
게시글 관리
오늘도 행복하다.
저작자표시
비영리
변경금지
▲
1
▼
티스토리툴바
Recent comment