// Name : Matthew Reeves // This is a test program to run SimpleList.java public class SimpleListTest { public static void main( String args[] ) //main method which calls and runs the methods from the SimpleList program { SimpleList numbers = new SimpleList(); numbers.getData(); numbers.processData(); numbers.displayResults(); } }