blob: d9969c11f9269ac6637e9bd1691065b1b0224fea [file] [log] [blame]
/**
* Copyright (c) 2013, 2017 CEA LIST.
*
* 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:
* CEA LIST - Initial API and implementation
*/
package org.eclipse.papyrus.cdo.validation.problems.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc --> A test suite for the '<em><b>problems</b></em>'
* package. <!-- end-user-doc -->
* @generated
*/
public class ProblemsTests 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 ProblemsTests("problems Tests"); //$NON-NLS-1$
suite.addTestSuite(EProblemTest.class);
suite.addTestSuite(EProblemsContainerTest.class);
return suite;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public ProblemsTests(String name) {
super(name);
}
} // ProblemsTests