[jboss-cvs] JBossAS SVN: r103416 - projects/scanning/trunk/testsuite/src/test/java/org/jboss/test/scanning/annotations.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 1 07:38:12 EDT 2010


Author: alesj
Date: 2010-04-01 07:38:11 -0400 (Thu, 01 Apr 2010)
New Revision: 103416

Added:
   projects/scanning/trunk/testsuite/src/test/java/org/jboss/test/scanning/annotations/AnnotationsTestSuite.java
Log:
Add suite.

Added: projects/scanning/trunk/testsuite/src/test/java/org/jboss/test/scanning/annotations/AnnotationsTestSuite.java
===================================================================
--- projects/scanning/trunk/testsuite/src/test/java/org/jboss/test/scanning/annotations/AnnotationsTestSuite.java	                        (rev 0)
+++ projects/scanning/trunk/testsuite/src/test/java/org/jboss/test/scanning/annotations/AnnotationsTestSuite.java	2010-04-01 11:38:11 UTC (rev 103416)
@@ -0,0 +1,53 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.test.scanning.annotations;
+
+import org.jboss.test.scanning.annotations.test.AnnotationEnvTestCase;
+import org.jboss.test.scanning.annotations.test.AnnotationsScanningTestCase;
+import org.jboss.test.scanning.annotations.test.AnnotationsScanningWithMetaDataTestCase;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+/**
+ * @author <a href="mailto:ales.justin at jboss.org">Ales Justin</a>
+ */
+public class AnnotationsTestSuite extends TestSuite
+{
+   public static void main(String[] args)
+   {
+      TestRunner.run(suite());
+   }
+
+   public static Test suite()
+   {
+      TestSuite suite = new TestSuite("Annotations Scanning Tests");
+
+      suite.addTest(AnnotationEnvTestCase.suite());
+      suite.addTest(AnnotationsScanningTestCase.suite());
+      suite.addTest(AnnotationsScanningWithMetaDataTestCase.suite());
+
+      return suite;
+   }
+}
\ No newline at end of file




More information about the jboss-cvs-commits mailing list