/* * Test program for PS 2, StringProcessing class * * Put this program in the same folder as your StringProcessing.java, * and use this as a guide to setup your own unit tests. * * */ public class TestMyMethods { public static void main(String[] args) { System.out.println("** Unit Tests **"); StringProcessing.printSubstrings("method"); System.out.println(); // Write your own unit tests for all the other methods! } }