Skip to main content
summaryrefslogtreecommitdiffstats
blob: 08a2c19805724da91f9161e77d60052345dd55bb (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
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.server.tests;

import org.eclipse.osee.framework.branch.management.test.BranchManagementTestSuite;
import org.eclipse.osee.framework.core.datastore.test.AllCoreDatastoreTestSuite;
import org.eclipse.osee.framework.core.dsl.integration.AllDslIntegrationTestSuite;
import org.eclipse.osee.framework.core.message.test.AllCoreMessageTestSuite;
import org.eclipse.osee.framework.core.model.AllCoreModelTestSuite;
import org.eclipse.osee.framework.core.server.test.CoreServerTestSuite;
import org.eclipse.osee.framework.core.test.FrameworkCoreTestSuite;
import org.eclipse.osee.framework.database.test.DatabaseTestSuite;
import org.eclipse.osee.framework.jdk.core.JdkCoreTestSuite;
import org.eclipse.osee.framework.lifecycle.test.AllLifecycleTestSuite;
import org.eclipse.osee.framework.logging.AllLoggingTestSuite;
import org.eclipse.osee.framework.resource.locator.attribute.test.AttributeLocatorProviderTestSuite;
import org.eclipse.osee.framework.resource.management.test.ResourceManagementTestSuite;
import org.eclipse.osee.framework.resource.provider.attribute.test.AttributeProviderTestSuite;
import org.eclipse.osee.framework.search.engine.test.AllSearchEngineTestSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * @author Roberto E. Escobar
 */
@RunWith(Suite.class)
@Suite.SuiteClasses({
   JdkCoreTestSuite.class,
   FrameworkCoreTestSuite.class,
   DatabaseTestSuite.class,
   AllCoreModelTestSuite.class,
   AllCoreDatastoreTestSuite.class,
   AllCoreMessageTestSuite.class,
   CoreServerTestSuite.class,
   BranchManagementTestSuite.class,
   AllLifecycleTestSuite.class,
   AllLoggingTestSuite.class,
   ResourceManagementTestSuite.class,
   AttributeLocatorProviderTestSuite.class,
   AttributeProviderTestSuite.class,
   AllSearchEngineTestSuite.class,
   AllDslIntegrationTestSuite.class,})
public class AllServerTestsSuite {
   // All OSEE Application Server Test Suite
}

Back to the top