Class EngineExecutionResults

java.lang.Object
org.junit.platform.testkit.engine.EngineExecutionResults

@API(status=MAINTAINED, since="1.7") public class EngineExecutionResults extends Object
EngineExecutionResults provides a fluent API for processing the results of executing a test plan on the JUnit Platform for a given TestEngine.
Since:
1.4
See Also:
  • Method Details

    • allEvents

      public Events allEvents()
      Get all recorded events.
      Since:
      1.6
      See Also:
    • containerEvents

      public Events containerEvents()
      Get recorded events for containers.

      In this context, the word "container" applies to TestDescriptors that return true from TestDescriptor.isContainer().

      Since:
      1.6
      See Also:
    • testEvents

      public Events testEvents()
      Get recorded events for tests.

      In this context, the word "test" applies to TestDescriptors that return true from TestDescriptor.isTest().

      Since:
      1.6
      See Also: