curcuru 01/02/09 12:40:00
Modified: test/java/src/org/apache/qetest/xsl PerformanceDatalet.java
PerformanceTestlet.java
Log:
Fix compile error; update default data set
Revision Changes Path
1.2 +6 -6
xml-xalan/test/java/src/org/apache/qetest/xsl/PerformanceDatalet.java
Index: PerformanceDatalet.java
===================================================================
RCS file:
/home/cvs/xml-xalan/test/java/src/org/apache/qetest/xsl/PerformanceDatalet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PerformanceDatalet.java 2001/02/09 01:55:23 1.1
+++ PerformanceDatalet.java 2001/02/09 20:40:00 1.2
@@ -86,21 +86,21 @@
* that can be written or read by anyone. An enclosing test can
* simply
* @author [EMAIL PROTECTED]
- * @version $Id: PerformanceDatalet.java,v 1.1 2001/02/09 01:55:23 curcuru
Exp $
+ * @version $Id: PerformanceDatalet.java,v 1.2 2001/02/09 20:40:00 curcuru
Exp $
*/
-public class PerformanceDatalet extends DataletImpl
+public class PerformanceDatalet implements Datalet
{
/** URL of the stylesheet. */
- public String inputName = "identity.xsl";
+ public String inputName = "tests/api/trax/identity.xsl";
/** URL of the xml document. */
- public String xmlName = "identity.xml";
+ public String xmlName = "tests/api/trax/identity.xml";
/** URL to put output into. */
- public String outputName = "identity.out";
+ public String outputName = "PerformanceDatalet.out";
/** URL of the a gold file or data. */
- public String goldName = "identity.gold";
+ public String goldName = "tests/api-gold/trax/identity.out";
/** Flavor of a ProcessorWrapper to use. */
public String flavor = "trax";
1.2 +2 -2
xml-xalan/test/java/src/org/apache/qetest/xsl/PerformanceTestlet.java
Index: PerformanceTestlet.java
===================================================================
RCS file:
/home/cvs/xml-xalan/test/java/src/org/apache/qetest/xsl/PerformanceTestlet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PerformanceTestlet.java 2001/02/09 01:55:23 1.1
+++ PerformanceTestlet.java 2001/02/09 20:40:00 1.2
@@ -70,7 +70,7 @@
* Testlet to capture basic timing performance data.
*
* @author [EMAIL PROTECTED]
- * @version $Id: PerformanceTestlet.java,v 1.1 2001/02/09 01:55:23 curcuru
Exp $
+ * @version $Id: PerformanceTestlet.java,v 1.2 2001/02/09 20:40:00 curcuru
Exp $
*/
public class PerformanceTestlet extends TestletImpl
{
@@ -78,7 +78,7 @@
static { thisClassName = "org.apache.qetest.xsl.PerformanceTestlet"; }
// Initialize our defaultDatalet
- { defaultDatalet = new PerformanceDatalet(); }
+ { defaultDatalet = (Datalet)new PerformanceDatalet(); }
/**
* Accesor method for a brief description of this test.