blob: a5c7bb9c77a154071caea077fb266209ae24060f [file] [log] [blame]
/*******************************************************************************
* 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.git.pgm.suite;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import junit.textui.TestRunner;
import org.eclipse.emf.compare.git.pgm.LogicalAppTest;
import org.eclipse.emf.compare.git.pgm.internal.cmd.CherryPickArgumentsTest;
import org.eclipse.emf.compare.git.pgm.internal.cmd.DiffArgumentsTest;
import org.eclipse.emf.compare.git.pgm.internal.cmd.MergeArgumentsTest;
import org.eclipse.emf.compare.git.pgm.internal.cmd.MergeToolArgumentsTest;
import org.eclipse.emf.compare.git.pgm.internal.cmd.PullArgumentsTest;
import org.eclipse.emf.compare.git.pgm.internal.cmd.RebaseArgumentsTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* @author <a href="mailto:arthur.daussy@obeo.fr">Arthur Daussy</a>
*/
@RunWith(Suite.class)
@SuiteClasses({LogicalAppTest.class, MergeArgumentsTest.class, MergeToolArgumentsTest.class,
DiffArgumentsTest.class, CherryPickArgumentsTest.class, RebaseArgumentsTest.class,
PullArgumentsTest.class })
public class AllCommandLineArgumentTests {
public static void main(String[] args) {
TestRunner.run(suite());
}
public static Test suite() {
return new JUnit4TestAdapter(AllCommandLineArgumentTests.class);
}
}