/****************************************************************************** * Copyright (c) 2016 Oracle * 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: * Konstantin Komissarchik - initial implementation and ongoing maintenance ******************************************************************************/ package org.eclipse.sapphire.tests.java; import org.eclipse.sapphire.tests.java.jdt.JavaJdtTestSuite; import org.eclipse.sapphire.tests.java.t0001.TestJava0001; import org.eclipse.sapphire.tests.java.t0002.TestJava0002; import org.eclipse.sapphire.tests.java.t0003.TestJava0003; import org.eclipse.sapphire.tests.java.t0004.TestJava0004; import org.eclipse.sapphire.tests.java.t0005.TestJava0005; import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; /** * @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a> */ @RunWith( Suite.class ) @SuiteClasses ( { TestJava0001.class, TestJava0002.class, TestJava0003.class, TestJava0004.class, TestJava0005.class, JavaJdtTestSuite.class } ) public final class JavaTestSuite { }