Skip to content

Instantly share code, notes, and snippets.

@ahmetozlu
Created June 5, 2021 13:10
Show Gist options
  • Save ahmetozlu/b5acc0969ef9f9b8b169af20e8d3530d to your computer and use it in GitHub Desktop.
Save ahmetozlu/b5acc0969ef9f9b8b169af20e8d3530d to your computer and use it in GitHub Desktop.
package mytest;
import org.junit.*;
import static org.junit.Assert.*;
public class ATest {
@Test
public void m1() {
// Write a test method
}
@Test
public void m2() {
// Write another test method
}
@Before
public void setUp() throws Exception {
// Common objects used by test methods may be set up here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment