1 package junit.tests;2 3 import java.util.Vector ;4 import junit.framework.*;5 6 /**7 * A test case testing the testing framework.8 *9 */10 public class Success extends TestCase {11 12 public Success(String name) {13 super(name);14 }15 public void test() {16 }17 }