Class JUnitViewMessageIds
java.lang.Object
com.tibco.ep.buildmavenplugin.surefire.JUnitViewMessageIds
Message identifiers for messages sent by the RemoteTestRunner.
see org.eclipse.jdt.internal.junit.runner.RemoteTestRunner
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Notification that an expected result ends.static final String
Notification that the expected result has started.static final String
Test identifier prefix for tests with assumption failures.static final String
Notification that an expected result ends.static final String
Notification that the expected result has started.static final String
Test identifier prefix for ignored tests.static final int
The header length of a message, all messages have a fixed header lengthstatic final String
Notification that a trace of a reran trace ends.static final String
Notification that a trace for a reran test has started.static final String
Notification that a test has started.static final String
Notification that a test had a error.static final String
Notification that a test had a failure.static final String
MessageFormat to encode test method identifiers: testMethod(testClass)static final String
Notification that a test was reran.static final String
Request to rerun a test.static final String
Notification that a test run has ended.static final String
Notification that a test run has started.static final String
Notification that a test has started.static final String
Request to stop the current test run.static final String
Notification that a test run was successfully stopped.static final String
Notification about a test inside the test suite.static final String
Notification that a trace ends.static final String
Notification that a test trace has started. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
MSG_HEADER_LENGTH
public static final int MSG_HEADER_LENGTHThe header length of a message, all messages have a fixed header length- See Also:
-
TRACE_START
Notification that a test trace has started. The end of the trace is signaled by a TRACE_END message. In between the TRACE_START and TRACE_END the stack trace is submitted as multiple lines.- See Also:
-
TRACE_END
Notification that a trace ends.- See Also:
-
EXPECTED_START
Notification that the expected result has started. The end of the expected result is signaled by a Trace_END.- See Also:
-
EXPECTED_END
Notification that an expected result ends.- See Also:
-
ACTUAL_START
Notification that the expected result has started. The end of the expected result is signaled by a Trace_END.- See Also:
-
ACTUAL_END
Notification that an expected result ends.- See Also:
-
RTRACE_START
Notification that a trace for a reran test has started. The end of the trace is signaled by a RTrace_END message.- See Also:
-
RTRACE_END
Notification that a trace of a reran trace ends.- See Also:
-
TEST_RUN_START
Notification that a test run has started. MessageIds.TEST_RUN_START + testCount.toString + " " + version- See Also:
-
TEST_START
Notification that a test has started. MessageIds.TEST_START + testID + "," + testName- See Also:
-
TEST_END
Notification that a test has started. TEST_END + testID + "," + testName- See Also:
-
TEST_ERROR
Notification that a test had a error. TEST_ERROR + testID + "," + testName. After the notification follows the stack trace.- See Also:
-
TEST_FAILED
Notification that a test had a failure. TEST_FAILED + testID + "," + testName. After the notification follows the stack trace.- See Also:
-
TEST_RUN_END
Notification that a test run has ended. TEST_RUN_END + elapsedTime.toString().- See Also:
-
TEST_STOPPED
Notification that a test run was successfully stopped.- See Also:
-
TEST_RERAN
Notification that a test was reran. TEST_RERAN + testId + " " + testClass + " " + testName + STATUS. Status = "OK" or "FAILURE".- See Also:
-
TEST_TREE
Notification about a test inside the test suite. TEST_TREE + testId + "," + testName + "," + isSuite + "," + testcount isSuite = "true" or "false"- See Also:
-
TEST_STOP
Request to stop the current test run.- See Also:
-
TEST_RERUN
Request to rerun a test. TEST_RERUN + testId + " " + testClass + " "+testName- See Also:
-
TEST_IDENTIFIER_MESSAGE_FORMAT
MessageFormat to encode test method identifiers: testMethod(testClass)- See Also:
-
IGNORED_TEST_PREFIX
Test identifier prefix for ignored tests.- See Also:
-
ASSUMPTION_FAILED_TEST_PREFIX
Test identifier prefix for tests with assumption failures.- See Also:
-
-
Constructor Details
-
JUnitViewMessageIds
public JUnitViewMessageIds()
-