Created
September 7, 2019 11:58
-
-
Save bamboomaster112/b894300e3e2db71ca10b34164f09613b to your computer and use it in GitHub Desktop.
This is a Test Code
This file contains hidden or 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
import org.junit.Test; | |
import static org.junit.Assert.*; | |
public class MySum_Test { | |
MySum Obj1 = new MySum(); | |
@Test | |
public void mySimpleTest() { | |
assertEquals(Obj1.sumofnumbers(10), 55); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment