blob: aec81b866fdc3bea126637f1bf6598b1b7e1aa3f [file] [log] [blame]
/*
* Copyright (c) 2012, 2013 CEA and others.
* 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:
* Christian W. Damus (CEA) - initial API and implementation
* Christian W. Damus (CEA) - 397508
*/
package org.eclipse.uml2.uml.validation.tests;
import org.eclipse.core.runtime.Platform;
import org.eclipse.uml2.uml.tests.util.StandaloneSupport;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Test suite for the {@code org.eclipse.uml2.uml.validation} package.
*/
public class UMLValidationTests
extends TestSuite {
/**
* Initializes me with my name.
*
* @param name
* my name
*/
public UMLValidationTests(String name) {
super(name);
}
public static Test suite() {
TestSuite result;
// these tests require an Eclipse instance
try {
if (!StandaloneSupport.isStandalone()) {
result = new UMLValidationTests("UML Validation Tests"); //$NON-NLS-1$
result.addTest(DelegatingConstraintProviderTest.suite());
result.addTest(UMLTraversalStrategyTest.suite());
} else {
result = new TestSuite(
"<UML validation tests require Eclipse to be running>"); //$NON-NLS-1$
}
} catch (LinkageError e) {
// no (or incomplete) Eclipse environment on the classpath
result = new TestSuite(
"<UML validation tests require an Eclipse instance>"); //$NON-NLS-1$
}
return result;
}
//
// Nested types
//
private static class EclipseHelper {
boolean isEclipseRunning() {
return Platform.isRunning();
}
}
}