import javax.swing.JFrame;

/**
   This program tests the MenuFrame.
*/
public class MenuTest
{  
   public static void main(String[] args)
   {  
      JFrame frame = new MenuFrame();
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.show();      
   }
}

