blob: 24e702092d9d34c1376e48606c609313210a36c3 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2004, 2007 Boeing
*
* 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
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.framework.jdk.core;
import org.eclipse.osee.framework.jdk.core.rules.JdkCoreRuleTestSuite;
import org.eclipse.osee.framework.jdk.core.text.JdkCoreTextTestSuite;
import org.eclipse.osee.framework.jdk.core.type.JdkCoreTypeTestSuite;
import org.eclipse.osee.framework.jdk.core.util.JdkCoreUtilTestSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* @author Roberto E. Escobar
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
JdkCoreRuleTestSuite.class,
JdkCoreTextTestSuite.class,
JdkCoreTypeTestSuite.class,
JdkCoreUtilTestSuite.class,})
public class JdkCoreTestSuite {
// Test Suite
}