Package

Source Code of AllTests

//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// J2ME-Lib source file
// Copyright (c) 2006 Elmar Sonnenschein / esoco GmbH
// Last Change: 13.10.2006 by eso
//
// J2ME-Lib is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 2.1 of the License, or (at your option)
// any later version.
//
// J2ME-Lib 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 Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with J2ME-Lib; 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
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
import j2meunit.framework.Test;
import j2meunit.framework.TestCase;
import j2meunit.framework.TestSuite;

import de.esoco.j2me.model.HierarchicalStorageTest;
import de.esoco.j2me.util.IntArrayTest;
import de.esoco.j2me.util.PropertiesTest;


/********************************************************************
* Suite for all tests.
*
* @author  Elmar Sonnenschein
* @version $Revision: 1.3 $
*/
public class AllTests extends TestCase
{
  //~ Constructors -----------------------------------------------------------

  /***************************************
   * TestOne constructor comment.
   */
  public AllTests()
  {
  }

  //~ Methods ----------------------------------------------------------------

  /***************************************
   * Create the suite.
   *
   * @return The test suite
   */
  public Test suite()
  {
    TestSuite suite = new TestSuite();

    suite.addTest(new HierarchicalStorageTest().suite());
    suite.addTest(new IntArrayTest().suite());
    suite.addTest(new PropertiesTest().suite());

    return suite;
  }
}
TOP

Related Classes of AllTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.