Skip to main content
summaryrefslogtreecommitdiffstats
blob: dccbf50a6515d290232bcd5b5286f6fde82cb50b (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*******************************************************************************
 * 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.skynet.core;

import static org.junit.Assert.assertTrue;
import org.eclipse.osee.framework.core.client.ClientSessionManager;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactPurgeTest;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactTestSuite;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactTypeInheritanceTest;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact_getLastModified;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact_setAttributeValues;
import org.eclipse.osee.framework.skynet.core.artifact.AttributePurgeTest;
import org.eclipse.osee.framework.skynet.core.artifact.BranchPurgeTest;
import org.eclipse.osee.framework.skynet.core.artifact.BranchStateTest;
import org.eclipse.osee.framework.skynet.core.artifact.ChangeManagerTest;
import org.eclipse.osee.framework.skynet.core.artifact.DuplicateHridTest;
import org.eclipse.osee.framework.skynet.core.artifact.NativeArtifactTest;
import org.eclipse.osee.framework.skynet.core.artifact.PurgeTransactionTest;
import org.eclipse.osee.framework.skynet.core.artifact.RelationDeletionTest;
import org.eclipse.osee.framework.skynet.core.artifact.RelationOrderingTest;
import org.eclipse.osee.framework.skynet.core.artifact.ReplaceWithAttributeTest;
import org.eclipse.osee.framework.skynet.core.artifact.StaticIdManagerTest;
import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactLoaderTest;
import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactQueryTestDemo;
import org.eclipse.osee.framework.skynet.core.event.filter.ArtifactEventFiltersTest;
import org.eclipse.osee.framework.skynet.core.event.filter.BranchEventFiltersTest;
import org.eclipse.osee.framework.skynet.core.event.model.ArtifactEventLoopbackTest;
import org.eclipse.osee.framework.skynet.core.event.model.ArtifactEventTest;
import org.eclipse.osee.framework.skynet.core.event.model.BranchEventLoopbackTest;
import org.eclipse.osee.framework.skynet.core.event.model.BranchEventTest;
import org.eclipse.osee.framework.skynet.core.event.model.EventBasicGuidArtifactTest;
import org.eclipse.osee.framework.skynet.core.event.model.EventBasicGuidRelationTest;
import org.eclipse.osee.framework.skynet.core.event.model.EventChangeTypeBasicGuidArtifactTest;
import org.eclipse.osee.framework.skynet.core.event.model.TransactionEventLocalTest;
import org.eclipse.osee.framework.skynet.core.event.model.TransactionEventRemoteTest;
import org.eclipse.osee.framework.skynet.core.importing.ImportingSuite;
import org.eclipse.osee.framework.skynet.core.importing.parsers.ParsersSuite;
import org.eclipse.osee.framework.skynet.core.relation.CrossBranchLinkTest;
import org.eclipse.osee.framework.skynet.core.relation.RelationTestSuite;
import org.eclipse.osee.framework.skynet.core.revision.ConflictTest;
import org.eclipse.osee.framework.skynet.core.transaction.TransactionManagerTest;
import org.eclipse.osee.framework.skynet.core.utility.CsvArtifactTest;
import org.eclipse.osee.framework.skynet.core.word.UpdateBookmarkIdTest;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses({
   UserManagerTest.class,
   ReplaceWithAttributeTest.class,
   AttributePurgeTest.class,
   CrossBranchLinkTest.class,
   UpdateBookmarkIdTest.class,
   ArtifactEventFiltersTest.class,
   BranchEventFiltersTest.class,
   BranchEventTest.class,
   BranchEventLoopbackTest.class,
   ArtifactLoaderTest.class,
   ArtifactEventTest.class,
   ArtifactEventLoopbackTest.class,
   TransactionEventLocalTest.class,
   TransactionEventRemoteTest.class,
   EventBasicGuidArtifactTest.class,
   EventBasicGuidRelationTest.class,
   EventChangeTypeBasicGuidArtifactTest.class,
   ArtifactQueryTestDemo.class,
   TransactionManagerTest.class,
   ArtifactTestSuite.class,
   RelationTestSuite.class,
   ArtifactTypeInheritanceTest.class,
   ArtifactPurgeTest.class,
   BranchPurgeTest.class,
   PurgeTransactionTest.class,
   Artifact_setAttributeValues.class,
   Artifact_getLastModified.class,
   CsvArtifactTest.class,
   NativeArtifactTest.class,
   ConflictTest.class,
   ChangeManagerTest.class,
   RelationDeletionTest.class,
   StaticIdManagerTest.class,
   BranchStateTest.class,
   DuplicateHridTest.class,
   RelationOrderingTest.class,
   ImportingSuite.class,
   ParsersSuite.class})
/**
 * @author Donald G. Dunne
 */
public class FrameworkCore_Demo_Suite {
   @BeforeClass
   public static void setUp() throws Exception {
      assertTrue("Demo Application Server must be running.",
         ClientSessionManager.getAuthenticationProtocols().contains("demo"));
      assertTrue("Client must authenticate using demo protocol",
         ClientSessionManager.getSession().getAuthenticationProtocol().equals("demo"));
   }

}

Back to the top