16 from ..publish.messages
import (RideTestExecutionStarted, RideTestPaused, RideTestPassed, RideTestFailed,
17 RideTestRunning, RideTestSkipped, RideTestStopped)
def set_paused(self, test)
def is_running(self, test)
def set_skipped(self, test)
def has_passed(self, test)
def has_skipped(self, test)
def test_execution_started(self)
def set_failed(self, test)
def has_failed(self, test)
def set_stopped(self, test)
def is_paused(self, test)
def set_running(self, test)
def set_passed(self, test)
Sent whenever new test execution is started.
Sent whenever RIDE has executed a test case, and it failed.
Sent whenever RIDE has executed a test case, and it passed.
Sent whenever RIDE is running a test case and paused.
Sent whenever RIDE is starting to run a test case.
Sent whenever RIDE has executed a test case, and it was skipped.
Sent whenever RIDE was executing a test case, and it was stopped or aborted.