blob: ca1309681c9936d432ed6c18c38d1e52862ce5fc [file] [log] [blame]
/**
* Copyright (c) 2004 - 2008 Eike Stepper, Germany.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*
*
* $Id: PopAllTests.java,v 1.3 2008-08-01 07:53:26 estepper Exp $
*/
package org.eclipse.net4j.pop.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test suite for the '<em><b>Pop</b></em>' model.
* <!-- end-user-doc -->
* @generated
*/
public class PopAllTests extends TestSuite
{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args)
{
TestRunner.run(suite());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Test suite()
{
TestSuite suite = new PopAllTests("Pop Tests");
suite.addTest(PopTests.suite());
return suite;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public PopAllTests(String name)
{
super(name);
}
} //PopAllTests