Skip to content

Instantly share code, notes, and snippets.

@zenloner
Created June 17, 2013 12:38
Show Gist options
  • Save zenloner/5796561 to your computer and use it in GitHub Desktop.
Save zenloner/5796561 to your computer and use it in GitHub Desktop.
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