Skip to main content
summaryrefslogtreecommitdiffstats
blob: 694c964e8920977e79ff49ae7e2b21f0643cc4b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
 * Copyright (c) 2009 SAP AG.
 * 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:
 *    Eduard Bartsch (SAP AG) - initial API and implementation
 *    Mathias Kinzler (SAP AG) - initial API and implementation
 *******************************************************************************/
package org.eclipse.core.resources.semantic.test.suite;

import org.eclipse.core.resources.semantic.test.TestCacheService;
import org.eclipse.core.resources.semantic.test.TestMetadataPersistenceManager;
import org.eclipse.core.resources.semantic.test.TestSemanticFileSystem;
import org.eclipse.core.resources.semantic.test.TestsCachingProvider;
import org.eclipse.core.resources.semantic.test.TestsDefaultContentProvider;
import org.eclipse.core.resources.semantic.test.TestsFederatingProvider;
import org.eclipse.core.resources.semantic.test.TestsFederatingProvider2;
import org.eclipse.core.resources.semantic.test.TestsLinkedResources;
import org.eclipse.core.resources.semantic.test.TestsNullContentProvider;
import org.eclipse.core.resources.semantic.test.TestsPlainProvider;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * All SFS tests
 */
@RunWith(Suite.class)
@Suite.SuiteClasses({TestsDefaultContentProvider.class, //
		TestsPlainProvider.class, //
		TestsCachingProvider.class,//
		TestsFederatingProvider.class,//
		TestsFederatingProvider2.class,//
		TestsNullContentProvider.class,//
		TestCacheService.class,//
		TestMetadataPersistenceManager.class,//
		TestSemanticFileSystem.class,//
		TestsLinkedResources.class})
public class SfsTestSuite {
	// the suite
}

Back to the top