/******************************************************************************* * 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.rcp.ui.tests.suite; import junit.framework.JUnit4TestAdapter; import junit.framework.Test; import junit.textui.TestRunner; import org.eclipse.emf.compare.rcp.ui.tests.structuremergeviewer.filters.TestBug435365; import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; /** * Aggregator of tests related to a bug described in bugzilla. * * @author <a href="mailto:arthur.daussy@obeo.fr">Arthur Daussy</a> */ @RunWith(Suite.class) @SuiteClasses({TestBug435365.class }) public class BugsTestSuite { /** * Launches the test with the given arguments. * * @param args * Arguments of the testCase. */ public static void main(String[] args) { TestRunner.run(suite()); } /** * Creates the {@link junit.framework.TestSuite TestSuite} for all the test. * * @return The test suite containing all the tests */ public static Test suite() { return new JUnit4TestAdapter(AllTests.class); } }