interface TestingMain {
    $notifyDelta(controllerId, diff): void;
    $notifyTestRunCreated(controllerId, run, preserveFocus): void;
    $notifyTestRunEnded(controllerId, runId): void;
    $notifyTestRunProfileCreated(controllerId, profile): void;
    $notifyTestStateChanged(controllerId, runId, stateChanges, outputChanges): void;
    $registerTestController(controllerId, label): void;
    $removeTestRunProfile(controllerId, profileId): void;
    $unregisterTestController(controllerId): void;
    $updateController(controllerId, patch): void;
    $updateTestRunProfile(controllerId, profileId, update): void;
}

Implemented by

Methods