Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/test/AllCoreModelTestSuite.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/test/AllCoreModelTestSuite.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/test/AllCoreModelTestSuite.java b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/test/AllCoreModelTestSuite.java
index d2d8b41a742..92c9167ed94 100644
--- a/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/test/AllCoreModelTestSuite.java
+++ b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/test/AllCoreModelTestSuite.java
@@ -10,21 +10,23 @@
*******************************************************************************/
package org.eclipse.osee.framework.core.model.test;
+import org.eclipse.osee.framework.core.model.test.access.AccessTestSuite;
import org.eclipse.osee.framework.core.model.test.cache.CacheTestSuite;
import org.eclipse.osee.framework.core.model.test.fields.FieldTestSuite;
-import org.eclipse.osee.framework.core.model.test.type.ModelTestSuite;
+import org.eclipse.osee.framework.core.model.test.type.TypeTestSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({//
-CacheTestSuite.class, //
+AccessTestSuite.class, //
+ CacheTestSuite.class, //
FieldTestSuite.class, //
- ModelTestSuite.class, //
+ TypeTestSuite.class, //
})
/**
* @author Roberto E. Escobar
*/
public class AllCoreModelTestSuite {
-
+ // Test Suite
}

Back to the top