Class JUnitViewMessageIds

java.lang.Object
com.tibco.ep.buildmavenplugin.surefire.JUnitViewMessageIds

public class JUnitViewMessageIds extends Object
Message identifiers for messages sent by the RemoteTestRunner. see org.eclipse.jdt.internal.junit.runner.RemoteTestRunner
  • Field Details

    • MSG_HEADER_LENGTH

      public static final int MSG_HEADER_LENGTH
      The header length of a message, all messages have a fixed header length
      See Also:
    • TRACE_START

      public static final String 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

      public static final String TRACE_END
      Notification that a trace ends.
      See Also:
    • EXPECTED_START

      public static final String 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

      public static final String EXPECTED_END
      Notification that an expected result ends.
      See Also:
    • ACTUAL_START

      public static final String 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

      public static final String ACTUAL_END
      Notification that an expected result ends.
      See Also:
    • RTRACE_START

      public static final String 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

      public static final String RTRACE_END
      Notification that a trace of a reran trace ends.
      See Also:
    • TEST_RUN_START

      public static final String TEST_RUN_START
      Notification that a test run has started. MessageIds.TEST_RUN_START + testCount.toString + " " + version
      See Also:
    • TEST_START

      public static final String TEST_START
      Notification that a test has started. MessageIds.TEST_START + testID + "," + testName
      See Also:
    • TEST_END

      public static final String TEST_END
      Notification that a test has started. TEST_END + testID + "," + testName
      See Also:
    • TEST_ERROR

      public static final String TEST_ERROR
      Notification that a test had a error. TEST_ERROR + testID + "," + testName. After the notification follows the stack trace.
      See Also:
    • TEST_FAILED

      public static final String 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

      public static final String TEST_RUN_END
      Notification that a test run has ended. TEST_RUN_END + elapsedTime.toString().
      See Also:
    • TEST_STOPPED

      public static final String TEST_STOPPED
      Notification that a test run was successfully stopped.
      See Also:
    • TEST_RERAN

      public static final String TEST_RERAN
      Notification that a test was reran. TEST_RERAN + testId + " " + testClass + " " + testName + STATUS. Status = "OK" or "FAILURE".
      See Also:
    • TEST_TREE

      public static final String TEST_TREE
      Notification about a test inside the test suite. TEST_TREE + testId + "," + testName + "," + isSuite + "," + testcount isSuite = "true" or "false"
      See Also:
    • TEST_STOP

      public static final String TEST_STOP
      Request to stop the current test run.
      See Also:
    • TEST_RERUN

      public static final String TEST_RERUN
      Request to rerun a test. TEST_RERUN + testId + " " + testClass + " "+testName
      See Also:
    • TEST_IDENTIFIER_MESSAGE_FORMAT

      public static final String TEST_IDENTIFIER_MESSAGE_FORMAT
      MessageFormat to encode test method identifiers: testMethod(testClass)
      See Also:
    • IGNORED_TEST_PREFIX

      public static final String IGNORED_TEST_PREFIX
      Test identifier prefix for ignored tests.
      See Also:
    • ASSUMPTION_FAILED_TEST_PREFIX

      public static final String ASSUMPTION_FAILED_TEST_PREFIX
      Test identifier prefix for tests with assumption failures.
      See Also:
  • Constructor Details

    • JUnitViewMessageIds

      public JUnitViewMessageIds()