본문 바로가기

assert3

Chrome Console Test # Chrome Console Test ##### [source : https://jsfiddle.net/softm/7ca1z2sf/ ](https://jsfiddle.net/softm/7ca1z2sf/) ```html Console Test Open console window for test. printfStyle byType assert trace group groupCollapsed profile time ``` ```css h3,p,button{font-family:Helvetica} p{font-size:12px} button{display:block; margin-top:5px} ``` ```javascript // define button handler var handler = { print.. 2019. 7. 31.
Java Assertion # Java Assertion 자바 1.4의 새기능: Assertion : http://javacan.tistory.com/entry/79 #### Assertion 기본 자바 1.4 버전은 1.3 버전에 보안을 비롯한 다양한 확장 API를 추가하여 그 크기가 방대해졌을 뿐만 아니라 NIO와 로깅 등 새로운 기능을 추가함으로써 완벽한 개발 플랫폼으로 확장되었다. 이러한 새로운 기능들 중에서 자바에서는 전혀 새로운 기능이라고 할 수 있는 게 Assertion 기능이다. #### Assertion은 무엇인가? Assertion은 불리언 식(expression)을 포함하고 있는 문장이다. 그 문장이 실행될 경우 불리언 식이 참이라고 단언할 수 있다. :: 자바 1.4의 새기능이 Assertion 이다. :: .. 2019. 7. 12.
Junit Test # Junit Test #### Reference - [junit : https://junit.org/junit4/](https://junit.org/junit4/) - [junit cook book : http://junit.sourceforge.net/doc/cookbook/cookbook.htm](http://junit.sourceforge.net/doc/cookbook/cookbook.htm) - [junit tutorial : https://www.tutorialspoint.com/junit/junit_ignore_test.htm](https://www.tutorialspoint.com/junit/junit_ignore_test.htm) - [Junit 설정 : http://kamang-it.t.. 2019. 7. 12.