blob: b041ab51ccbe6d9fb33f8ad5bc9e3b7d72a312de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2019 Tomasz Zarna and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tomasz Zarna <tzarna@gmail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.releng.tests.tools;
import org.junit.runner.RunWith;
import org.junit.runners.AllTests;
import junit.framework.JUnit4TestAdapter;
import junit.framework.TestSuite;
/**
* Tests for integration and nightly builds.
*/
@RunWith(AllTests.class)
public class AllRelengToolsTests {
public static TestSuite suite() {
TestSuite suite = new TestSuite();
suite.addTest(new JUnit4TestAdapter(AdvancedCopyrightCommentTestsJunit4.class));
if (isJGitAvailable())
suite.addTest(new JUnit4TestAdapter(GitCopyrightAdapterTest.class));
return suite;
}
private static boolean isJGitAvailable() {
try {
Class.forName("org.eclipse.jgit.api.Git");
} catch (ClassNotFoundException e) {
return false;
}
return true;
}
}