forked from microsoft/vscode-java-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
39 lines (36 loc) · 1.03 KB
/
types.ts
File metadata and controls
39 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
import { Range } from 'vscode';
import { TestKind, TestLevel } from './java-test-runner.api';
export interface IJavaTestItem {
children: IJavaTestItem[];
uri: string | undefined;
range: Range | undefined;
jdtHandler: string;
fullName: string;
label: string;
id: string;
projectName: string;
testKind: TestKind;
testLevel: TestLevel;
/**
* Provides a hint to the UI on how to sort tests.
*/
sortText?: string;
/**
* Identifies a single invocation of a parameterized test.
* Invocations for which a re-run is possible store their own uniqueId which is provided as part of the result.
* Methods may store it in order to specify a certain parameter-set to be used when running again.
*/
uniqueId?: string;
/**
* Optional fields for projects
*/
natureIds?: string[];
}
export enum ProjectType {
Gradle,
Maven,
UnmanagedFolder,
Other,
}