1.2.2 JUnit 테스트 좀 더 이해
이클립스는 간단한 템플릿을 제공합니다. 바로 실행할 수 있습니다.
iloveyouboss_02/test/iloveyouboss/ScoreCollectionTest.java
package iloveyouboss; ➊import static org.junit.Assert.*; ➋import org.junit.*; ➌public class ScoreCollectionTest { ➍ @Test ➎ public void test() { ➏ fail("Not yet implemented"); } }