Interface TestItem

interface TestItem {
    busy: boolean;
    canResolveChildren: boolean;
    controller: undefined | TestController;
    description?: string;
    error?: string | MarkdownString;
    id: string;
    label: string;
    parent: undefined | TestItem;
    path: string[];
    range?: Range;
    sortKey?: string;
    tags: string[];
    tests: readonly TestItem[];
    uri?: URI;
    resolveChildren(): void;
}

Properties

busy: boolean
canResolveChildren: boolean
controller: undefined | TestController
description?: string
error?: string | MarkdownString
id: string
label: string
parent: undefined | TestItem
path: string[]
range?: Range
sortKey?: string
tags: string[]
tests: readonly TestItem[]
uri?: URI

Methods