Author: ekoneil
Date: Tue Jul 27 17:28:43 2004
New Revision: 30806
Modified:
incubator/beehive/trunk/netui/test/ant/test.properties
incubator/beehive/trunk/netui/test/src/testRecorder/build.xml
incubator/beehive/trunk/netui/test/src/testRecorder/org/apache/beehive/netui/tools/testrecorder/client/MasterTestRecorderJUnitTest.java
Log:
Commit two test recorder changes.
- jdk 1.4 build fix
- remove references to NetUI runtime code from the test recorder build /
execute classpaths
BB: self
DRT: NetUI pass
Modified: incubator/beehive/trunk/netui/test/ant/test.properties
==============================================================================
--- incubator/beehive/trunk/netui/test/ant/test.properties (original)
+++ incubator/beehive/trunk/netui/test/ant/test.properties Tue Jul 27
17:28:43 2004
@@ -78,8 +78,6 @@
${deployed.httpClient.jar};\
${deployed.test-recorder.jar};\
${deployed.commons-logging.jar};\
-${deployed.util.jar};\
-${deployed.scoping.jar};\
${servlet24.jar};\
${log4j.jar};\
${xbean.jar};\
Modified: incubator/beehive/trunk/netui/test/src/testRecorder/build.xml
==============================================================================
--- incubator/beehive/trunk/netui/test/src/testRecorder/build.xml
(original)
+++ incubator/beehive/trunk/netui/test/src/testRecorder/build.xml Tue Jul
27 17:28:43 2004
@@ -2,7 +2,7 @@
<project name="Beehive/NetUI/testRecorder" default="compile" basedir=".">
- <property name="module.classpath"
location="${deployed.junit.jar};${deployed.httpClient.jar};${deployed.commons-logging.jar};${deployed.util.jar};${deployed.scoping.jar};${log4j.jar};${servlet24.jar};${jsp20.jar};${xbean.jar};${junit.jar}"/>
+ <property name="module.classpath"
location="${deployed.junit.jar};${deployed.httpClient.jar};${deployed.commons-logging.jar};${log4j.jar};${servlet24.jar};${jsp20.jar};${xbean.jar};${junit.jar}"/>
<property name="module.classes.dir"
location="${qa.classes.dir}/${module.name}"/>
<property name="module.jar.name" value="${test-recorder.jar.name}"/>
<property name="module.jar" location="${qa.lib.dir}/${module.jar.name}"/>
Modified:
incubator/beehive/trunk/netui/test/src/testRecorder/org/apache/beehive/netui/tools/testrecorder/client/MasterTestRecorderJUnitTest.java
==============================================================================
---
incubator/beehive/trunk/netui/test/src/testRecorder/org/apache/beehive/netui/tools/testrecorder/client/MasterTestRecorderJUnitTest.java
(original)
+++
incubator/beehive/trunk/netui/test/src/testRecorder/org/apache/beehive/netui/tools/testrecorder/client/MasterTestRecorderJUnitTest.java
Tue Jul 27 17:28:43 2004
@@ -206,7 +206,7 @@
}
private static boolean getDeleteResultsProperty() {
- return Boolean.parseBoolean( getProperty( DELETE_RESULTS_PROPERTY ) );
+ return Boolean.valueOf( getProperty( DELETE_RESULTS_PROPERTY )
).booleanValue();
}
private static String getTestsProperty() {
@@ -222,7 +222,7 @@
}
private static boolean getAllProperty() {
- return Boolean.parseBoolean( getProperty( ALL_PROPERTY ) );
+ return Boolean.valueOf( getProperty( ALL_PROPERTY ) ).booleanValue();
}
private static String getProperty( String prop ) {