package nl.tudelft.simulation.logger; import junit.framework.TestCase; /** *
* (c) copyright 2002-2005 Delft University of Technology , the
* Netherlands.
* See for project information www.simulation.tudelft.nl
* License of use: Lesser General Public License (LGPL) , no
* warranty.
* @author Peter Jacobs
* @version 1.2 Sep 28, 2004
* @since 1.5
*/
public class LoggerTest extends TestCase
{
/**
* constructs a new LoggerTest.
*/
public LoggerTest()
{
this("test");
}
/**
* constructs a new LoggerTest.
* @param arg0
*/
public LoggerTest(String arg0)
{
super(arg0);
}
/**
* tests the Logger
*/
public void test()
{
// TODO fill in the test
}
}