Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2014-08-26 18:51:13 +0000
committerRoberto E. Escobar2014-10-01 21:04:20 +0000
commit8d8f0219c79d9e8f0366c062ed6e0291cd36985c (patch)
tree6dffd5cf43e65af1df79c38cafe8df9f4bddf386 /plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/validator/ValidatorTestSuite.java
parentdfe51d925a9804b57f5ec32664d298f9ad15df92 (diff)
downloadorg.eclipse.osee-8d8f0219c79d9e8f0366c062ed6e0291cd36985c.tar.gz
org.eclipse.osee-8d8f0219c79d9e8f0366c062ed6e0291cd36985c.tar.xz
org.eclipse.osee-8d8f0219c79d9e8f0366c062ed6e0291cd36985c.zip
bug[ats_ATS33276]: Transitioning actions to completed errors on open branch
Diffstat (limited to 'plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/validator/ValidatorTestSuite.java')
-rw-r--r--plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/validator/ValidatorTestSuite.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/validator/ValidatorTestSuite.java b/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/validator/ValidatorTestSuite.java
new file mode 100644
index 00000000000..89fdfca6430
--- /dev/null
+++ b/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/validator/ValidatorTestSuite.java
@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * 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.ats.core.client.validator;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses({AtsXCommitManagerValidatorTest.class})
+/**
+ *
+ * @author Donald G. Dunne
+ */
+public class ValidatorTestSuite {
+ // TestSuite
+}

Back to the top