/******************************************************************************* * Copyright (c) 2014 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.compare.uml2.ide.tests.suite; import junit.framework.JUnit4TestAdapter; import junit.framework.Test; import junit.textui.TestRunner; import org.eclipse.emf.compare.uml2.ide.tests.profile.ProfileLoadingTest; import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; /** * This test suite allows us to launch all tests for EMF Compare at once. * * @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a> */ @RunWith(Suite.class) @SuiteClasses({ProfileLoadingTest.class }) public class AllTests { /** * Standalone launcher for all of compare's tests. * * @generated */ public static void main(String[] args) { TestRunner.run(suite()); } /** * This will return a suite populated with all tests available through this class. * * @generated */ public static Test suite() { return new JUnit4TestAdapter(AllTests.class); } }