link start!
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package org.testng.reporters;
|
||||
|
||||
public interface XMLConstants {
|
||||
public static final String ATTR_CLASSNAME = "classname";
|
||||
public static final String ATTR_ERRORS = "errors";
|
||||
public static final String ATTR_FAILURES = "failures";
|
||||
public static final String ATTR_HOSTNAME = "hostname";
|
||||
public static final String ATTR_MESSAGE = "message";
|
||||
public static final String ATTR_NAME = "name";
|
||||
public static final String ATTR_PACKAGE = "package";
|
||||
public static final String ATTR_TESTS = "tests";
|
||||
public static final String ATTR_TIME = "time";
|
||||
public static final String ATTR_TIMESTAMP = "timestamp";
|
||||
public static final String ATTR_TYPE = "type";
|
||||
public static final String ATTR_VALUE = "value";
|
||||
public static final String ERROR = "error";
|
||||
public static final String FAILURE = "failure";
|
||||
public static final String PROPERTIES = "properties";
|
||||
public static final String PROPERTY = "property";
|
||||
public static final String SYSTEM_ERR = "system-err";
|
||||
public static final String SYSTEM_OUT = "system-out";
|
||||
public static final String TESTCASE = "testcase";
|
||||
public static final String TESTSUITE = "testsuite";
|
||||
public static final String TESTSUITES = "testsuites";
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.testng.reporters.jq;
|
||||
|
||||
import org.testng.ISuite;
|
||||
|
||||
public interface INavigatorPanel extends IPanel {
|
||||
String getClassName();
|
||||
|
||||
String getNavigatorLink(ISuite iSuite);
|
||||
|
||||
String getPanelName(ISuite iSuite);
|
||||
|
||||
String getPrefix();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.testng.reporters.jq;
|
||||
|
||||
import org.testng.reporters.XMLStringBuffer;
|
||||
|
||||
public interface IPanel {
|
||||
void generate(XMLStringBuffer xMLStringBuffer);
|
||||
}
|
||||
Reference in New Issue
Block a user