Skip to content

Instantly share code, notes, and snippets.

@bamboomaster112
Created September 7, 2019 11:58
Show Gist options
  • Save bamboomaster112/b894300e3e2db71ca10b34164f09613b to your computer and use it in GitHub Desktop.
Save bamboomaster112/b894300e3e2db71ca10b34164f09613b to your computer and use it in GitHub Desktop.
This is a Test Code
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