import org.junit.runner.JUnitCore; import org.junit.runner.Result; import org.junit.runner.notification.Failure;
public class TestRunner { public static void main(String[] args) { Result result = JUnitCore.runClasses(TestJunit.class); for(Failure failure : result.getFailures()) { System.out.println(failure.toString()); } System.out.println(result.wasSuccessful()); } }
import org.junit.Test; import static org.junit.Assert.assertEquals;
public class TestJunit { String message = "Hello World"; helloworld hw = new helloworld(); @Test public void testPrint(){ assertEquals(message, hw.get_text()); } }