1   // joi/3/shapes/UnitTests.java                         
2   //                                                            
3   //                                                            
4   // Copyright 2003 Bill Campbell and Ethan Bolker                         
5                                                               
6   /**
7    * This program invokes the unit tests for the individual
8    * shape classes.
9    *
10   * @version 3
11   */
12  
13  public class UnitTests
14  {
15      /**
16       * Invoke unit test for each shape.
17       */
18  
19      public static void main( String[] args )
20      {
21          HLine.main( args );
22          Box.main( args );
23      }
24  }
25  
26  
27  
28  
29