JUnit Java Tutorial

import junit.framework.TestCase;
public class TestLargest extends TestCase {
  public TestLargest(String name) {
    super(name);
  }
  public void testEmpty() {
    assertSame("should be same", "expected", "actual");
  }
}