[jboss-cvs] JBossAS SVN: r78846 - projects/jboss-deployers/trunk/deployers-vfs/src/test/java/org/jboss/test/deployers/vfs/structure.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 25 05:11:56 EDT 2008


Author: alesj
Date: 2008-09-25 05:11:56 -0400 (Thu, 25 Sep 2008)
New Revision: 78846

Modified:
   projects/jboss-deployers/trunk/deployers-vfs/src/test/java/org/jboss/test/deployers/vfs/structure/VFSStructureTestSuite.java
Log:
Add DirStructure tests to testsuite.

Modified: projects/jboss-deployers/trunk/deployers-vfs/src/test/java/org/jboss/test/deployers/vfs/structure/VFSStructureTestSuite.java
===================================================================
--- projects/jboss-deployers/trunk/deployers-vfs/src/test/java/org/jboss/test/deployers/vfs/structure/VFSStructureTestSuite.java	2008-09-25 08:42:43 UTC (rev 78845)
+++ projects/jboss-deployers/trunk/deployers-vfs/src/test/java/org/jboss/test/deployers/vfs/structure/VFSStructureTestSuite.java	2008-09-25 09:11:56 UTC (rev 78846)
@@ -24,16 +24,17 @@
 import junit.framework.Test;
 import junit.framework.TestSuite;
 import junit.textui.TestRunner;
-
+import org.jboss.test.deployers.vfs.structure.dir.test.DirStructureUnitTestCase;
+import org.jboss.test.deployers.vfs.structure.dir.test.RealDirStructureUnitTestCase;
+import org.jboss.test.deployers.vfs.structure.ear.test.EARStructureRecognizeTestCase;
 import org.jboss.test.deployers.vfs.structure.ear.test.EARStructureUnitTestCase;
-import org.jboss.test.deployers.vfs.structure.ear.test.EARStructureRecognizeTestCase;
 import org.jboss.test.deployers.vfs.structure.ear.test.InnerModificationUnitTestCase;
 import org.jboss.test.deployers.vfs.structure.explicit.test.DeclaredStructureUnitTestCase;
 import org.jboss.test.deployers.vfs.structure.explicit.test.ModificationTypeUnitTestCase;
 import org.jboss.test.deployers.vfs.structure.file.test.CombinedFileStructureUnitTestCase;
 import org.jboss.test.deployers.vfs.structure.file.test.ConfiguredSuffixFileStructureUnitTestCase;
+import org.jboss.test.deployers.vfs.structure.file.test.FileMatcherTestCase;
 import org.jboss.test.deployers.vfs.structure.file.test.FileStructureUnitTestCase;
-import org.jboss.test.deployers.vfs.structure.file.test.FileMatcherTestCase;
 import org.jboss.test.deployers.vfs.structure.jar.test.CombinedJARStructureUnitTestCase;
 import org.jboss.test.deployers.vfs.structure.jar.test.ConfiguredSuffixJARStructureUnitTestCase;
 import org.jboss.test.deployers.vfs.structure.jar.test.JARStructureUnitTestCase;
@@ -78,6 +79,8 @@
       suite.addTest(WARUnpackUnitTestCase.suite());
       suite.addTest(ModificationTypeUnitTestCase.suite());
       suite.addTest(InnerModificationUnitTestCase.suite());
+      suite.addTest(DirStructureUnitTestCase.suite());
+      suite.addTest(RealDirStructureUnitTestCase.suite());
 
       return suite;
    }




More information about the jboss-cvs-commits mailing list