JUnit 썸네일형 리스트형 Contents of JUnit lectures About JUnit Framework What is JUnit ? • De facto Java unit testing framework •Integrated nicely with IDEs and Ant •Easy to learn Unit test & Integration test Unit test using main() method public class LinesInPage { private int page; public void setPage(int page) { this.page = page; } public int getStartLine(){ return page-1*10+1; } public int getEndLine(){ return page*10; } public void main(Stri.. 더보기 이전 1 다음