JUnit : 함수를 테스트하는 클래스 1. poem.xml 에 JUnit 포함 junit junit 4.11 2. JUnitTest.class 파일에서 import org.junit.Before; import org.junit.Test; // 단위 테스트 도구. import static org.junit.Assert.*; import static org.hamcrest.CoreMatchers.is; class Calc{ private int x,y; public void setX(int x){this.x = x;} public void setY(int y){this.y = y;} public int sum(){return x+y;} public int sub(){return x-y;} public in..