/**
 * Test the LinkedList class.
 *
 * @author Samuel A. Rebelsky
 * @version 1.0 of April 2004
 */
public class TestLL
{
  public static void main(String[] args)
  {
    TestGL.test(new LinkedList());
  } // main(String[])
} // class TestLL

