rdonkin 2004/05/11 15:45:39
Modified: beanutils/optional/bean-collections build.properties.sample
build.xml project.xml
beanutils/optional/bean-collections/src/test/org/apache/commons/beanutils
BeanCollectionsTestSuite.java
Log:
Added BeanMap from collections. (Thanks Stephen)
Revision Changes Path
1.2 +1 -0
jakarta-commons/beanutils/optional/bean-collections/build.properties.sample
Index: build.properties.sample
===================================================================
RCS file:
/home/cvs/jakarta-commons/beanutils/optional/bean-collections/build.properties.sample,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.properties.sample 10 May 2004 19:54:53 -0000 1.1
+++ build.properties.sample 11 May 2004 22:45:39 -0000 1.2
@@ -17,6 +17,7 @@
# The pathname of the collections classes JAR file
commons-collections.jar = ${commons-collections.home}/commons-collections.jar
+commons-collections.jar =
${commons-collections.home}/commons-collections-testframework-3.0-dev.jar
# The home directory for the Commons logging classes distribution
commons-logging.home = ../logging/dist
1.2 +7 -2 jakarta-commons/beanutils/optional/bean-collections/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/beanutils/optional/bean-collections/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.xml 10 May 2004 19:55:30 -0000 1.1
+++ build.xml 11 May 2004 22:45:39 -0000 1.2
@@ -48,7 +48,11 @@
<!-- ========== Derived Values ============================================ -->
<!-- The pathname of the collections classes JAR file -->
- <property name="commons-collections.jar"
value="${commons-collections.home}/commons-collections.jar"/>
+ <property name="commons-collections.jar"
value="${commons-collections.home}/commons-collections-3.0-dev.jar"/>
+
+ <!-- The pathname of the collections testframework classes JAR file -->
+ <property name="commons-collections-testframework.jar"
value="${commons-collections.home}/commons-collections-testframework-3.0-dev.jar"/>
+
<!-- The pathname of the logging classes JAR file -->
<property name="commons-logging.jar"
value="${commons-logging.home}/commons-logging.jar"/>
@@ -118,6 +122,7 @@
<pathelement location="${build.home}/tests"/>
<pathelement location="${commons-logging.jar}"/>
<pathelement location="${commons-collections.jar}"/>
+ <pathelement location="${commons-collections-testframework.jar}"/>
<pathelement location="${commons-beanutils-core.jar}"/>
<pathelement location="${junit.jar}"/>
</path>
1.2 +7 -0 jakarta-commons/beanutils/optional/bean-collections/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/beanutils/optional/bean-collections/project.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- project.xml 10 May 2004 19:55:30 -0000 1.1
+++ project.xml 11 May 2004 22:45:39 -0000 1.2
@@ -39,5 +39,12 @@
<id>commons-beanutils</id>
<version>1.6</version>
</dependency>
+ <!-- Test Only -->
+ <dependency>
+ <artifactId>commons-collections-testframework</artifactId>
+ <groupId>commons-collections</groupId>
+ <version>SNAPSHOT</version>
+ </dependency>
+
</dependencies>
</project>
1.2 +2 -2
jakarta-commons/beanutils/optional/bean-collections/src/test/org/apache/commons/beanutils/BeanCollectionsTestSuite.java
Index: BeanCollectionsTestSuite.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/beanutils/optional/bean-collections/src/test/org/apache/commons/beanutils/BeanCollectionsTestSuite.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BeanCollectionsTestSuite.java 10 May 2004 20:01:50 -0000 1.1
+++ BeanCollectionsTestSuite.java 11 May 2004 22:45:39 -0000 1.2
@@ -48,7 +48,7 @@
suite.addTestSuite(BeanToPropertyValueTransformerTest.class);
suite.addTestSuite(BeanPropertyValueEqualsPredicateTest.class);
suite.addTestSuite(BeanPropertyValueChangeClosureTest.class);
-
+ suite.addTestSuite(TestBeanMap.class);
return suite;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]