JUnit Java Tutorial

import junit.framework.*;
public class TestSimple extends TestCase {
  public TestSimple(String name) {
    super(name);
  }
  public void testAdd() {
    assertEquals(2, 1+1);
  }
}