Revision: 63735
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at June 2, 2013 23:33 by Heart
Initial Code
import org.junit.Before;
import org.junit.After;
import org.junit.Assert;
import org.junit.Test;
public class JUnitTest {
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void testDoWork() {
exception.expect(IllegalStateException.class);
// Assert.assert* ���� ì¡°ê±´ ì²´ÃÂ�¬
}
}
Initial URL
Initial Description
기본 JUnit 테스트 골격
Initial Title
Basic JUnit Test
Initial Tags
Initial Language
Java