01: /*
02: * Conditions Of Use
03: *
04: * This software was developed by employees of the National Institute of
05: * Standards and Technology (NIST), and others.
06: * This software is has been contributed to the public domain.
07: * As a result, a formal license is not needed to use the software.
08: *
09: * This software is provided "AS IS."
10: * NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
11: * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
12: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
13: * AND DATA ACCURACY. NIST does not warrant or make any representations
14: * regarding the use of the software or the results thereof, including but
15: * not limited to the correctness, accuracy, reliability or usefulness of
16: * the software.
17: *
18: *
19: */
20: /******************************************************
21: * File: TagNames.java
22: * created 06-Dec-00 8:05:39 PM by mranga
23: * Tag names and attributes.
24: */package test.torture;
25:
26: public interface TagNames {
27: public final static String TORTURE = "torture";
28: public final static String TESTCASE = "testcase";
29: public final static String EXPECT_EXCEPTION = "expect-exception-callback";
30: public final static String MESSAGE = "message";
31: public final static String SIP_URL = "sip-url";
32: public final static String DESCRIPTION = "description";
33: public final static String EXCEPTION_CLASS = "exception-class";
34: public final static String EXCEPTION_MESSAGE = "exception-message";
35: public final static String EXCEPTION_TEXT = "exception-text";
36: public final static String PARSED_OUTPUT = "parsed-output";
37: public final static String DIAGNOSTIC = "diagnostic";
38: public final static String DIAGNOSTIC_MESSAGES = "diagnostic-messages";
39: public final static String REASON = "reason";
40: public final static String STACK_TRACE = "stack-trace";
41: public final static String TEST_OUTPUT = "test-output";
42: public final static String STATUS = "status";
43: public final static String SIP_HEADER = "sip-header";
44: public final static String OUTPUT_RESULTS = "output-results";
45: }
|