1   /*
2    * @(#) LoggerTest.java Sep 28, 2004 Copyright (c) 2002-2005 Delft University of
3    * Technology Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved.
4    * This software is proprietary information of Delft University of Technology
5    * The code is published under the Lesser General Public License
6    */
7   package nl.tudelft.simulation.logger;
8   
9   import junit.framework.TestCase;
10  
11  /***
12   * <p>
13   * (c) copyright 2002-2005 <a href="http://www.simulation.tudelft.nl">Delft
14   * University of Technology </a>, the Netherlands. <br>
15   * See for project information <a
16   * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
17   * License of use: <a href="http://www.gnu.org/copyleft/lesser.html">Lesser
18   * General Public License (LGPL) </a>, no warranty.
19   * 
20   * @author <a href="http://www.peter-jacobs.com/index.htm">Peter Jacobs </a>
21   * @version 1.2 Sep 28, 2004
22   * @since 1.5
23   */
24  public class LoggerTest extends TestCase
25  {
26  
27      /***
28       * constructs a new LoggerTest
29       */
30      public LoggerTest()
31      {
32          this("test");
33      }
34  
35      /***
36       * constructs a new LoggerTest
37       * 
38       * @param arg0
39       */
40      public LoggerTest(String arg0)
41      {
42          super(arg0);
43      }
44  
45      /***
46       * tests the Logger
47       */
48      public void test()
49      {
50          // TODO fill in the test
51      }
52  }