blob: a30acb0686146b6500f44435382c97d7598fb7c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Brock Janiczak (brockj@tpg.com.au)
* - https://bugs.eclipse.org/bugs/show_bug.cgi?id=102236: [JUnit] display execution time next to each test
* Neale Upstone <neale@nealeupstone.com> - [JUnit] JUnit viewer doesn't recognise <skipped/> node - https://bugs.eclipse.org/bugs/show_bug.cgi?id=276068
*******************************************************************************/
package org.eclipse.jdt.internal.junit.model;
public interface IXMLTags {
public static final String NODE_TESTRUN= "testrun"; //$NON-NLS-1$
public static final String NODE_TESTSUITES= "testsuites"; //$NON-NLS-1$
public static final String NODE_TESTSUITE= "testsuite"; //$NON-NLS-1$
public static final String NODE_PROPERTIES= "properties"; //$NON-NLS-1$
public static final String NODE_PROPERTY= "property"; //$NON-NLS-1$
public static final String NODE_TESTCASE= "testcase"; //$NON-NLS-1$
public static final String NODE_ERROR= "error"; //$NON-NLS-1$
public static final String NODE_FAILURE= "failure"; //$NON-NLS-1$
public static final String NODE_EXPECTED= "expected"; //$NON-NLS-1$
public static final String NODE_ACTUAL= "actual"; //$NON-NLS-1$
public static final String NODE_SYSTEM_OUT= "system-out"; //$NON-NLS-1$
public static final String NODE_SYSTEM_ERR= "system-err"; //$NON-NLS-1$
public static final String NODE_SKIPPED = "skipped"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_NAME= "name"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_PROJECT= "project"; //$NON-NLS-1$
/**
* value: Integer
*/
public static final String ATTR_TESTS= "tests"; //$NON-NLS-1$
/**
* value: Integer
*/
public static final String ATTR_STARTED= "started"; //$NON-NLS-1$
/**
* value: Integer
*/
public static final String ATTR_FAILURES= "failures"; //$NON-NLS-1$
/**
* value: Integer
*/
public static final String ATTR_ERRORS= "errors"; //$NON-NLS-1$
/**
* value: Boolean
*/
public static final String ATTR_IGNORED= "ignored"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_PACKAGE= "package"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_ID= "id"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_CLASSNAME= "classname"; //$NON-NLS-1$
/**
* value: Boolean
*/
public static final String ATTR_INCOMPLETE= "incomplete"; //$NON-NLS-1$
/**
* value: Double
*/
public static final String ATTR_TIME= "time"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_MESSAGE= "message"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_DISPLAY_NAME= "displayname"; //$NON-NLS-1$
/**
* value: Boolean
*/
public static final String ATTR_DYNAMIC_TEST= "dynamicTest"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_PARAMETER_TYPES= "parameters"; //$NON-NLS-1$
/**
* value: String
*/
public static final String ATTR_UNIQUE_ID= "uniqueid"; //$NON-NLS-1$
// public static final String ATTR_TYPE= "type"; //$NON-NLS-1$
}