blob: 0ac3fa3aa174976871ce481612f1aa769f33582c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2018 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.linuxtools.javadocs.test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* Run this suite as JUnit plug-in test.
*
*/
@RunWith(Suite.class)
@SuiteClasses({
CheckJavadoc.class,
}
)
public class AllTests {
// Empty
}