[savara-commits] savara SVN: r232 - trunk/tools/eclipse/org.scribble.core/src/test/org/scribble.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu May 27 13:49:01 EDT 2010


Author: objectiser
Date: 2010-05-27 13:49:00 -0400 (Thu, 27 May 2010)
New Revision: 232

Added:
   trunk/tools/eclipse/org.scribble.core/src/test/org/scribble/ScribbleCoreAllTests.java
Log:
Added test suite.

Added: trunk/tools/eclipse/org.scribble.core/src/test/org/scribble/ScribbleCoreAllTests.java
===================================================================
--- trunk/tools/eclipse/org.scribble.core/src/test/org/scribble/ScribbleCoreAllTests.java	                        (rev 0)
+++ trunk/tools/eclipse/org.scribble.core/src/test/org/scribble/ScribbleCoreAllTests.java	2010-05-27 17:49:00 UTC (rev 232)
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2005-9 Pi4 Technologies Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ *
+ * Change History:
+ * 23 Feb 2009 : Initial version created by gary
+ */
+package org.scribble;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class ScribbleCoreAllTests {
+
+	public static Test suite() {
+		TestSuite suite = new TestSuite();
+
+		suite.addTestSuite(org.scribble.comparator.BlockComparatorRuleTest.class);
+		suite.addTestSuite(org.scribble.comparator.ChannelComparatorRuleTest.class);
+		suite.addTestSuite(org.scribble.comparator.DefaultNameMapTest.class);
+		suite.addTestSuite(org.scribble.comparator.GlobalToLocalModelComparatorRuleTest.class);
+
+		return suite;
+	}
+}
\ No newline at end of file



More information about the savara-commits mailing list