Interface TestService

interface TestService {
    isRefreshing: boolean;
    onControllersChanged: Event<CollectionDelta<string, TestController>>;
    onDidChangeIsRefreshing: Event<void>;
    cancelRefresh(): void;
    clearResults(): void;
    configureProfile(): void;
    getControllers(): TestController[];
    refresh(): void;
    registerTestController(controller): Disposable;
    runAllTests(profileKind): void;
    runTests(profileKind, tests): void;
    runTestsWithProfile(tests): void;
    selectDefaultProfile(): void;
}

Implemented by

Properties

isRefreshing: boolean
onControllersChanged: Event<CollectionDelta<string, TestController>>
onDidChangeIsRefreshing: Event<void>

Methods