[[Java]] UnitTest framework http://www.junit.org TestDrivenDevelopmentByExample 을 보면 기본적인 사용법을 알 수 있다. CompositePattern을 써서, 여러테스트를 그룹으로 묶을 수 있도록 되어있다. ---- JUnit template {{{#!java import junit.framework.*; public class SomeTest extends TestCase { public static void main(String[] args) { junit.textui.TestRunner.run(SomeTest.class); } public void setUp() { } public void tearDown() { } public void test1() { } } }}} == 예제코드 == [[Factorial.java]] ---- SeeAlso * Xper:JUnit : [[JUnit]]질문답변 * Wiki:JavaUnit * JUnit best practices: http://www.javaworld.com/javaworld/jw-12-2000/jw-1221-junit.html ---- CategoryProgramLibrary