Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c8e600342f92078808c6fdd02e404f4c655c689e (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
44
45
46
47
48
49
50
51
52
53
54
/*****************************************************************************
 * Copyright (c) 2010, 2016 CEA LIST, Christian W. Damus, 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:
 *  Remi Schnekenburger (CEA LIST) remi.schnekenburger@cea.fr - Initial API and implementation
 *  Christian W. Damus (CEA LIST) - add test for AdapterUtils
 *  Christian W. Damus (CEA) - bugs 402525, 422257, 399859
 *  Christian W. Damus - bugs 456934, 468030, 482949, 485220
 *  
 *****************************************************************************/
package org.eclipse.papyrus.infra.core.tests;

import org.eclipse.papyrus.infra.core.language.LanguageServiceTest;
import org.eclipse.papyrus.infra.core.resource.AbstractModelWithSharedResourceTest;
import org.eclipse.papyrus.infra.core.resource.ModelSetTest;
import org.eclipse.papyrus.infra.core.resource.NestingTransactionalCommandStackTest;
import org.eclipse.papyrus.infra.core.resource.ResourceAdapterTest;
import org.eclipse.papyrus.infra.core.resource.ResourceAdapterTransactionalTest;
import org.eclipse.papyrus.infra.core.services.ComposedServiceTest;
import org.eclipse.papyrus.infra.core.services.ServicesRegistryTest;
import org.eclipse.papyrus.infra.core.utils.AdapterUtilsTest;
import org.eclipse.papyrus.infra.core.utils.JobBasedFutureTest;
import org.eclipse.papyrus.infra.core.utils.JobExecutorServiceTest;
import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
import org.eclipse.papyrus.junit.framework.runner.Headless;
import org.junit.runner.RunWith;
import org.junit.runners.Suite.SuiteClasses;



@Headless
@RunWith(ClassificationSuite.class)
@SuiteClasses({
		// {oep.resource}
		ModelSetTest.class, AbstractModelWithSharedResourceTest.class, NestingTransactionalCommandStackTest.class,
		ResourceAdapterTest.class, ResourceAdapterTransactionalTest.class,
		// {oep}.core.language
		LanguageServiceTest.class,
		// {oep}.core.services
		ComposedServiceTest.class, ServicesRegistryTest.class,
		// {oep}.core.utils
		AdapterUtilsTest.class, JobBasedFutureTest.class, JobExecutorServiceTest.class
})
/**
 * Suite Class for all tests in the plugin
 */
public class AllTests {
	// Junit 4 Test suite
}

Back to the top