[434822] Conflict between move and delete
[EMFCompare2.git] / plugins / org.eclipse.emf.compare.ide.ui.tests / src / org / eclipse / emf / compare / ide / ui / tests / suite / BugsTestSuite.java
blob3d603abfd76aa2147252692ce91b1d1d737087c7
1 /*******************************************************************************
2 * Copyright (c) 2014 Obeo.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Obeo - initial API and implementation
10 *******************************************************************************/
11 package org.eclipse.emf.compare.ide.ui.tests.suite;
13 import junit.framework.JUnit4TestAdapter;
14 import junit.framework.Test;
15 import junit.textui.TestRunner;
17 import org.eclipse.emf.compare.ide.ui.tests.structuremergeviewer.actions.TestBug434822;
18 import org.eclipse.emf.compare.ide.ui.tests.structuremergeviewer.actions.TestBug434827;
19 import org.junit.runner.RunWith;
20 import org.junit.runners.Suite;
21 import org.junit.runners.Suite.SuiteClasses;
23 /**
24 * Aggregator of tests related to a bug described in bugzilla.
26 * @author <a href="mailto:arthur.daussy@obeo.fr">Arthur Daussy</a>
28 @RunWith(Suite.class)
29 @SuiteClasses({TestBug434827.class, TestBug434822.class })
30 public class BugsTestSuite {
31 /**
32 * Launches the test with the given arguments.
34 * @param args
35 * Arguments of the testCase.
37 public static void main(String[] args) {
38 TestRunner.run(suite());
41 /**
42 * Creates the {@link junit.framework.TestSuite TestSuite} for all the test.
44 * @return The test suite containing all the tests
46 public static Test suite() {
47 return new JUnit4TestAdapter(AllTests.class);