[jboss-cvs] JBossAS SVN: r58408 - projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 15 12:01:18 EST 2006


Author: kabir.khan at jboss.com
Date: 2006-11-15 12:01:14 -0500 (Wed, 15 Nov 2006)
New Revision: 58408

Modified:
   projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AspectMCAllTestSuite.java
Log:
Add missing tests

Modified: projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AspectMCAllTestSuite.java
===================================================================
--- projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AspectMCAllTestSuite.java	2006-11-15 16:56:26 UTC (rev 58407)
+++ projects/microcontainer/trunk/aop-mc-int/src/tests/org/jboss/test/microcontainer/test/AspectMCAllTestSuite.java	2006-11-15 17:01:14 UTC (rev 58408)
@@ -27,7 +27,7 @@
 
 /**
  * All Test Suite.
- * 
+ *
  * @author <a href="adrian at jboss.com">Adrian Brock</a>
  * @version $Revision$
  */
@@ -42,12 +42,27 @@
    {
       TestSuite suite = new TestSuite("All Tests");
 
+      suite.addTest(BeanCallingMethodInCtorTestCase.suite());
+      suite.addTest(BeanNoDefaultCtorUsingParamTestCase.suite());
+      suite.addTest(ConstructorInterceptorWithDependencyTestCase.suite());
+      suite.addTest(InterceptedTestCase.suite());
+      suite.addTest(InterceptedUseCaseXmlTestCase.suite());
+      suite.addTest(InterceptorWithAnnotationDependencyTestCase.suite());
+      suite.addTest(InterceptorWithDependencyTestCase.suite());
+      suite.addTest(InterceptorWithNestedAnnotationDependencyTestCase.suite());
+      suite.addTest(InterceptorWithNestedMethodAnnotationDependencyTestCase.suite());
+      suite.addTest(InterceptorWithOverriddenClassAnnotationDependencyTestCase.suite());
+      suite.addTest(InterceptorWithOverriddenMethodAnnotationDependencyForChildTestCase.suite());
+      suite.addTest(InterceptorWithOverriddenMethodAnnotationDependencyTestCase.suite());
+      suite.addTest(IntroductionDependencyTestCase.suite());
       suite.addTest(JMXDecoratedTestCase.suite());
-      suite.addTest(InterceptedTestCase.suite());
+      suite.addTest(JMXLifecycleTestCase.suite());
+      suite.addTest(JndiDecoratedTestCase.suite());
+      suite.addTest(JndiLifeCycleTestCase.suite());
       suite.addTest(MetaDataTestCase.suite());
-      suite.addTest(InterceptorWithDependencyTestCase.suite());
-      suite.addTest(InterceptorWithAnnotationDependencyTestCase.suite());
-      
+      suite.addTest(MixinTestCase.suite());
+      suite.addTest(MultipleLifecycleTestCase.suite());
+
       return suite;
    }
 }




More information about the jboss-cvs-commits mailing list