⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlconstants.java

📁 MoMEUnit是一个单元测试的J2ME的应用程序xUnit架构实例。这是来自JUnit框架
💻 JAVA
字号:
package org.momeunit.ant.core;import org.momeunit.ant.formatter.XMLUnitResultFormatter;/** * Interface that groups XML constants used by {@link XMLUnitResultFormatter}. * This interface is provided to keep functional equivalence to junit's * <code>xml</code> formatter. *  * @author Sergio Morozov * @version 1.1.2 */public interface XMLConstants{  /**   * The name of element for the aggregate xml document.   *    * @since 1.1.1   */  String TESTSUITES = "testsuites";  /**   * The name of <code>testsuite</code> element.   *    * @since 1.1.1   */  String TESTSUITE = "testsuite";  /**   * The name of <code>testcase</code> element.   *    * @since 1.1.1   */  String TESTCASE = "testcase";  /**   * The name of <code>error</code> element.   *    * @since 1.1.1   */  String ERROR = "error";  /**   * The name of <code>failure</code> element.   *    * @since 1.1.1   */  String FAILURE = "failure";  /**   * The name of <code>system-err</code> element.   *    * @since 1.1.1   */  String SYSTEM_ERR = "system-err";  /**   * The name of <code>system-out</code> element.   *    * @since 1.1.1   */  String SYSTEM_OUT = "system-out";  /**   * The name of <code>package</code> attribute for the aggregate document.   *    * @since 1.1.1   */  String ATTR_PACKAGE = "package";  /**   * The name of <code>name</code> attribute for <code>property</code>,   * <code>testcase</code> and <code>testsuite</code> elements   *    * @since 1.1.1   */  String ATTR_NAME = "name";  /**   * The name of <code>time</code> attribute for <code>testcase</code> and   * <code>testsuite</code> elements.   *    * @since 1.1.1   */  String ATTR_TIME = "time";  /**   * The name of <code>errors</code> attribute for <code>testsuite</code>   * elements.   *    * @since 1.1.1   */  String ATTR_ERRORS = "errors";  /**   * The name of <code>failures</code> attribute for <code>testsuite</code>   * elements.   *    * @since 1.1.1   */  String ATTR_FAILURES = "failures";  /**   * The name of <code>tests</code> attribute for <code>testsuite</code>   * elements.   *    * @since 1.1.1   */  String ATTR_TESTS = "tests";  /**   * The name of <code>type</code> attribute for <code>failure</code> and   * <code>error</code> elements.   *    * @since 1.1.1   */  String ATTR_TYPE = "type";  /**   * The name of <code>message</code> attribute for <code>failure</code>   * elements.   *    * @since 1.1.1   */  String ATTR_MESSAGE = "message";  /**   * The name of <code>properties</code> element.   *    * @since 1.1.1   */  String PROPERTIES = "properties";  /**   * The name of <code>property</code> element.   *    * @since 1.1.1   */  String PROPERTY = "property";  /**   * The name of <code>value</code> attribute for <code>property</code>   * elements,   *    * @since 1.1.1   */  String ATTR_VALUE = "value";  /**   * The name of <code>classname</code> attribute for <code>testcase</code>   * elements.   *    * @since 1.1.1   */  String ATTR_CLASSNAME = "classname";  /**   * The name of <code>id</code> attribute.   *    * @since 1.1.1   */  String ATTR_ID = "id";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -