blob: 93193602bc2d7459b5ed540b0615d74119818fde [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2012 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime.session;
import junit.framework.Test;
import junit.framework.TestCase;
import org.eclipse.core.tests.internal.registry.ExtensionRegistryStaticTest;
import org.eclipse.core.tests.runtime.RuntimeTest;
import org.eclipse.core.tests.session.SessionTestSuite;
/**
* @since 3.1
*/
public class AllTests extends TestCase {
public static Test suite() {
SessionTestSuite runtimeSessionTests = new SessionTestSuite(RuntimeTest.PI_RUNTIME_TESTS, AllTests.class.getName());
runtimeSessionTests.addTest(ExtensionRegistryStaticTest.suite());
return runtimeSessionTests;
}
}