[jbosstools-commits] JBoss Tools SVN: r23185 - trunk/smooks/tests/org.jboss.tools.smooks.templating.test/src/org/jboss/tools/smooks/templating/template.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Fri Jul 2 13:03:22 EDT 2010


Author: dgolovin
Date: 2010-07-02 13:03:22 -0400 (Fri, 02 Jul 2010)
New Revision: 23185

Added:
   trunk/smooks/tests/org.jboss.tools.smooks.templating.test/src/org/jboss/tools/smooks/templating/template/SmooksTemplatingTestSuite.java
Log:
test suite added to smooks.templating.test plugin to let tycho find all tests 


Added: trunk/smooks/tests/org.jboss.tools.smooks.templating.test/src/org/jboss/tools/smooks/templating/template/SmooksTemplatingTestSuite.java
===================================================================
--- trunk/smooks/tests/org.jboss.tools.smooks.templating.test/src/org/jboss/tools/smooks/templating/template/SmooksTemplatingTestSuite.java	                        (rev 0)
+++ trunk/smooks/tests/org.jboss.tools.smooks.templating.test/src/org/jboss/tools/smooks/templating/template/SmooksTemplatingTestSuite.java	2010-07-02 17:03:22 UTC (rev 23185)
@@ -0,0 +1,20 @@
+package org.jboss.tools.smooks.templating.template;
+
+import org.jboss.tools.smooks.templating.template.csv.CSVFreeMarkerTemplateBuilderTest;
+import org.jboss.tools.smooks.templating.template.xml.XMLSampleXMLFreeMarkerTemplateBuilderTest;
+import org.jboss.tools.smooks.templating.template.xml.XSDXMLFreeMarkerTemplateBuilderTest;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class SmooksTemplatingTestSuite {
+	public static Test suite() {
+		TestSuite suite = new TestSuite("Smooks Templating Tests");
+
+		suite.addTestSuite(CSVFreeMarkerTemplateBuilderTest.class);
+		suite.addTestSuite(XMLSampleXMLFreeMarkerTemplateBuilderTest.class);
+		suite.addTestSuite(XSDXMLFreeMarkerTemplateBuilderTest.class);
+
+		return suite;
+	}
+}



More information about the jbosstools-commits mailing list