//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// MicroSafe source file first created on 13.04.2003 by eso
//
// This file is part of MicroSafe, a Java 2 Micro Edition application.
//
// MicroSafe is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2 of the License, or (at your option)
// any later version.
//
// MicroSafe is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with MicroSafe; if not, write to the Free Software Foundation, Inc.,
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA or use the contact
// information from the GNU website http://www.gnu.org
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// default pacakge
import de.esoco.microsafe.model.MicroSafeModelStorageTest;
import j2meunit.framework.Test;
import j2meunit.framework.TestCase;
import j2meunit.framework.TestSuite;
public class AllTests extends TestCase
{
//~ Constructors -----------------------------------------------------------
/***************************************
* TestOne constructor comment.
*/
public AllTests()
{
}
//~ Methods ----------------------------------------------------------------
public Test suite()
{
TestSuite suite = new TestSuite();
suite.addTest(new MicroSafeModelStorageTest().suite());
return suite;
}
}