Cspray\AsyncUnit
namespace. This portion of the namespace has been left out for brevity.Events::TEST_PROCESSING_STARTED
Event\TestProcessingStartedEvent
Statistics\AggregateSummary
Events::TEST_SUITE_STARTED
Event\TestSuiteStartedEvent
Statistics\TestSuiteSummary
Events::TEST_CASE_STARTED
Event\TestCaseStartedEvent
Statistics\TestCaseSummary
Events::TEST_PROCESSED
Event\TestProcessedEvent
TestResult
Events::TEST_PASSED
Event\TestPassedEvent
TestResult
Events::TEST_FAILED
Event\TestFailedEvent
TestResult
Events::TEST_DISABLED
Event\TestDisabledEvent
TestResult
Events::TEST_CASE_FINISHED
Event\TestCaseFinishedEvent
Statistics\ProcessedTestCaseSummary
Events::TEST_SUITE_FINISHED
Event\TestSuiteFinishedEvent
Statistics\ProcessedTestSuiteSummary
Events::TEST_PROCESSING_FINISHED
Event\TestProcessingFinishedEvent
Statistics\ProcessedAggregateSummary
TestSuite
before any TestCase
associated have started processing. This event is guaranteed to be emitted at least once in case you're using the ImplicitTestSuite
that gets utilized if you don't explicitly specify a TestSuite
. This event will be emitted even if a TestSuite
has been marked as disabled.TestCase
before any tests associated are processed. This event will be emitted even if a TestCase
has been marked as disabled.TEST_PASSED
, TEST_FAILED
, and TEST_DISABLED
events instead. However, if you need access to everything this could be a good event to listen to. The TestResult
will also provide access to information about the test that was run, including the TestCase
instance used to run the test.TestResult
is the same instance passed to the TEST_PROCESSED
event. This event will not be emitted if the test has failed or has been disabled.TestResult
is the same instance passed to the TEST_PROCESSED
event. This event will not be emitted if the test has passed or has been disabled.TestCase
, or TestSuite
should be annotated with the Disabled
Attribute. The TestResult
is the same instance passed to the TEST_PROCESSED
event. This event will not be emitted if the test has passed or failed.TestCase
have finished processing. This event will be emitted even if a TestCase
has been marked as disabled.TestSuite
after all TestCase
associated have finished processing. This event is guaranteed to be emitted at least once in case you're using the ImplicitTestSuite
that gets utilized if you don't explicitly specify a TestSuite
. This event will be emitted even if a TestSuite
has been marked as disabled.