Skip to content

Instantly share code, notes, and snippets.

@doohee323
Forked from HeartSaVioR/JUnitTest.java
Created November 12, 2013 16:41
Show Gist options
  • Select an option

  • Save doohee323/7434202 to your computer and use it in GitHub Desktop.

Select an option

Save doohee323/7434202 to your computer and use it in GitHub Desktop.
import org.junit.Before;
import org.junit.After;
import static 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() {
// assert* 메소드로 조건 체크
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment