From 1d5e7de9ef435927e87894764aaccd750fdbc0e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=98=E5=B0=8F=E5=AE=89?= Date: Mon, 23 Aug 2021 15:28:03 +0800 Subject: [PATCH] feat: finish Tests translate (#12) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feature/tests:finish Tests translate * feature/tests:revisions * fix problems Co-authored-by: youngjuning --- vscode.d.ts | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/vscode.d.ts b/vscode.d.ts index 05c77384..69ec5c1e 100644 --- a/vscode.d.ts +++ b/vscode.d.ts @@ -13842,19 +13842,17 @@ export namespace authentication { } /** - * Namespace for testing functionality. Tests are published by registering - * {@link TestController} instances, then adding {@link TestItem TestItems}. - * Controllers may also describe how to run tests by creating one or more - * {@link TestRunProfile} instances. + * 用于测试功能的命名空间。通过注册 {@link TestController} 实例, 然后添加 {@link TestItem TestItems} 来发布 Tests。 + * Controllers 也可以通过添加一个或者多个 {@link TestRunProfile} 实例来描述如何运行测试。 * @maintainer {@link https://github.com/pan463859 @pan463859} */ export namespace tests { /** - * Creates a new test controller. + * 创建一个新的 test controller. * - * @param id Identifier for the controller, must be globally unique. - * @param label A human-readable label for the controller. - * @returns An instance of the {@link TestController}. + * @param id controller 的标识符, 必须全局唯一。 + * @param label controller 的易于理解的标签。 + * @returns {@link TestController} 实例。 */ export function createTestController(id: string, label: string): TestController; }