Created
June 5, 2021 13:10
-
-
Save ahmetozlu/b5acc0969ef9f9b8b169af20e8d3530d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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