curcuru 01/03/23 11:13:53
Modified: test/java/src/org/apache/qetest/xsl
XSLProcessorTestBase.java
Log:
Update usage() to not use >< for ease of Ant and xml-based output
Revision Changes Path
1.12 +12 -11
xml-xalan/test/java/src/org/apache/qetest/xsl/XSLProcessorTestBase.java
Index: XSLProcessorTestBase.java
===================================================================
RCS file:
/home/cvs/xml-xalan/test/java/src/org/apache/qetest/xsl/XSLProcessorTestBase.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- XSLProcessorTestBase.java 2001/03/22 19:54:45 1.11
+++ XSLProcessorTestBase.java 2001/03/23 19:13:52 1.12
@@ -92,7 +92,7 @@
* <li>runErr</li>
* </ul>
* @author [EMAIL PROTECTED]
- * @version $Id: XSLProcessorTestBase.java,v 1.11 2001/03/22 19:54:45
curcuru Exp $
+ * @version $Id: XSLProcessorTestBase.java,v 1.12 2001/03/23 19:13:52
curcuru Exp $
*/
public class XSLProcessorTestBase extends FileBasedTest
{
@@ -102,30 +102,31 @@
* @author Shane Curcuru
*
* @return String describing our usage; includes most of the
- * flags we support and our parent class' usage
+ * flags we support and our parent class' usage; note avoidance
+ * of < and > for Ant and xml-based output
*/
public String usage()
{
return ("Common options supported by XSLProcessorTestBase:\n"
+ " -" + OPT_CATEGORY
- + " <name of single subdir within testDir to run>\n"
+ + " (name of single subdir within testDir to run)\n"
+ " -" + OPT_EXCLUDES
- + " <list;of;specific file.xsl tests to skip>\n"
+ + " (list;of;specific file.xsl tests to skip)\n"
+ " -" + OPT_EMBEDDED
- + " <list;of;specific file.xml embedded tests to run>\n"
+ + " (list;of;specific file.xml embedded tests to run)\n"
+ " -" + OPT_LIAISON
- + " <liaisonClassName>\n"
+ + " (liaisonClassName)\n"
+ " -" + OPT_FLAVOR
- + " <xalan|lotusxsl|xt|etc... - which kind of Processor
to test>\n"
+ + " (xalan|lotusxsl|xt|etc...) which kind of Processor
to test\n"
+ " -" + OPT_DIAGNOSTICS
- + " <root filename for diagnostics output>\n"
+ + " (root filename for diagnostics output)\n"
+ " -" + OPT_NOREUSE
- + " (will force recreate processor each time)\n"
+ + " will force recreate processor each time\n"
+ " -" + OPT_PRECOMPILE
- + " (will use precompiled stylesheet, if applicable)\n"
+ + " will use precompiled stylesheet, if applicable\n"
+ " -" + OPT_NOERRTEST
- + " (will skip running 'err' tests, if applicable)\n"
+ + " will skip running 'err' tests, if applicable\n"
+ super.usage());
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]