package make; /* You MAY add public @Test methods to this class. You may also add * additional public classes containing "Testing" in their name. These * may not be part of your make package per se (that is, it must be * possible to remove them and still have your package work). */ import org.junit.Test; import ucb.junit.textui; import static org.junit.Assert.*; /** Unit tests for the make package. */ public class Testing { /** Run all JUnit tests in the make package. */ public static void main(String[] ignored) { System.exit(textui.runClasses(make.Testing.class)); } }