Return to Snippet

Revision: 63735
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