Created
June 17, 2013 12:38
-
-
Save zenloner/5796561 to your computer and use it in GitHub Desktop.
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
package test.zenloner.com; | |
import org.junit.Assert; | |
import org.junit.Test; | |
public class JTest { | |
@Test | |
public void testHello() { | |
Assert.assertEquals("Hello World", MyTest.hello_world()); | |
} | |
@Test | |
public void testInt() { | |
Assert.assertEquals(10, MyTest.test_int()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment