/** * this class runs Robot.java * * @author bohuie */ public class TestRobot { /** * @param args * @return void */ public static void main( String[] args ) { System.out.println( "********** Testing Robot ..."); // create a new robot called "roomba" Robot roomba = new Robot(); // calls the robot to the OFFICE location roomba.comeHere(); // gets the robot to display its information System.out.println( roomba.toString() ); } }