Author: simonetripodi
Date: Thu Jan 21 15:38:08 2010
New Revision: 901743
URL: http://svn.apache.org/viewvc?rev=901743&view=rev
Log:
added EmployeeTestCase to digester test suite
Modified:
commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/DigesterAnnotationsTestCase.java
Modified:
commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/DigesterAnnotationsTestCase.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/DigesterAnnotationsTestCase.java?rev=901743&r1=901742&r2=901743&view=diff
==============================================================================
---
commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/DigesterAnnotationsTestCase.java
(original)
+++
commons/sandbox/at-digester/trunk/src/test/org/apache/commons/digester/annotations/DigesterAnnotationsTestCase.java
Thu Jan 21 15:38:08 2010
@@ -18,6 +18,7 @@
import org.apache.commons.digester.annotations.addressbook.AddressBookTestCase;
import org.apache.commons.digester.annotations.catalog.CatalogTestCase;
+import org.apache.commons.digester.annotations.employee.EmployeeTestCase;
import org.apache.commons.digester.annotations.person.PersonTestCase;
import org.apache.commons.digester.annotations.rss.RssTestCase;
import org.apache.commons.digester.annotations.servletbean.ServletBeanTestCase;
@@ -55,6 +56,7 @@
suite.addTestSuite(AddressBookTestCase.class);
suite.addTestSuite(RssTestCase.class);
suite.addTestSuite(CatalogTestCase.class);
+ suite.addTestSuite(EmployeeTestCase.class);
return suite;
}