/** java HW1Test should test the methods defined in Progs. */ public class HW1Test { public static void main (String[] args) { report ("factorSum", test_factorSum ()); report ("printSociablePairs", test_printSociablePairs ()); report ("dcatenate", test_dcatenate ()); report ("sublist", test_sublist ()); report ("dsublist", test_dsublist ()); } private static void report (String name, boolean isOK) { if (isOK) System.out.printf ("%s OK.%n", name); else System.out.printf ("%s FAILS.%n", name); } // Replace the bodies of the functions below with something serious. private static boolean test_factorSum () { return false; } private static boolean test_printSociablePairs () { return false; } private static boolean test_dcatenate () { return false; } private static boolean test_sublist () { return false; } private static boolean test_dsublist () { return false; } }