Java程序  |  38行  |  1.52 KB

/*
 * Copyright (C) 2010 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package vogar;

public final class XmlReportConstants {
    public static final String TESTSUITE = "testsuite";
    public static final String TESTCASE = "testcase";
    public static final String SUCCESS = "success";
    public static final String ERROR = "error";
    public static final String FAILURE = "failure";
    public static final String ATTR_NAME = "name";
    public static final String ATTR_TIME = "time";
    public static final String ATTR_ERRORS = "errors";
    public static final String ATTR_FAILURES = "failures";
    public static final String ATTR_TESTS = "tests";
    public static final String ATTR_TYPE = "type";
    public static final String PROPERTIES = "properties";
    public static final String ATTR_CLASSNAME = "classname";
    public static final String TIMESTAMP = "timestamp";
    public static final String HOSTNAME = "hostname";

    public static final String DATEFORMAT = "yyyy-MM-dd'T'HH:mm:ss";
}