KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > junit > model > IXMLTags


1 /*******************************************************************************
2  * Copyright (c) 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11
12 package org.eclipse.jdt.internal.junit.model;
13
14 public interface IXMLTags {
15
16     public static final String JavaDoc NODE_TESTRUN= "testrun"; //$NON-NLS-1$
17
public static final String JavaDoc NODE_TESTSUITES= "testsuites"; //$NON-NLS-1$
18
public static final String JavaDoc NODE_TESTSUITE= "testsuite"; //$NON-NLS-1$
19
public static final String JavaDoc NODE_PROPERTIES= "properties"; //$NON-NLS-1$
20
public static final String JavaDoc NODE_PROPERTY= "property"; //$NON-NLS-1$
21
public static final String JavaDoc NODE_TESTCASE= "testcase"; //$NON-NLS-1$
22
public static final String JavaDoc NODE_ERROR= "error"; //$NON-NLS-1$
23
public static final String JavaDoc NODE_FAILURE= "failure"; //$NON-NLS-1$
24
public static final String JavaDoc NODE_EXPECTED= "expected"; //$NON-NLS-1$
25
public static final String JavaDoc NODE_ACTUAL= "actual"; //$NON-NLS-1$
26
public static final String JavaDoc NODE_SYSTEM_OUT= "system-out"; //$NON-NLS-1$
27
public static final String JavaDoc NODE_SYSTEM_ERR= "system-err"; //$NON-NLS-1$
28

29     /**
30      * value: String
31      */

32     public static final String JavaDoc ATTR_NAME= "name"; //$NON-NLS-1$
33
/**
34      * value: String
35      */

36     public static final String JavaDoc ATTR_PROJECT= "project"; //$NON-NLS-1$
37
/**
38      * value: Integer
39      */

40     public static final String JavaDoc ATTR_TESTS= "tests"; //$NON-NLS-1$
41
/**
42      * value: Integer
43      */

44     public static final String JavaDoc ATTR_STARTED= "started"; //$NON-NLS-1$
45
/**
46      * value: Integer
47      */

48     public static final String JavaDoc ATTR_FAILURES= "failures"; //$NON-NLS-1$
49
/**
50      * value: Integer
51      */

52     public static final String JavaDoc ATTR_ERRORS= "errors"; //$NON-NLS-1$
53
/**
54      * value: Boolean
55      */

56     public static final String JavaDoc ATTR_IGNORED= "ignored"; //$NON-NLS-1$
57
/**
58      * value: String
59      */

60     public static final String JavaDoc ATTR_PACKAGE= "package"; //$NON-NLS-1$
61
/**
62      * value: String
63      */

64     public static final String JavaDoc ATTR_ID= "id"; //$NON-NLS-1$
65
/**
66      * value: String
67      */

68     public static final String JavaDoc ATTR_CLASSNAME= "classname"; //$NON-NLS-1$
69
/**
70      * value: Boolean
71      */

72     public static final String JavaDoc ATTR_INCOMPLETE= "incomplete"; //$NON-NLS-1$
73

74 // public static final String ATTR_TIME= "time"; //$NON-NLS-1$
75
// public static final String ATTR_MESSAGE= "message"; //$NON-NLS-1$
76
// public static final String ATTR_TYPE= "type"; //$NON-NLS-1$
77
}
78
Popular Tags