Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TestCaseReference

import type { TestCaseReference } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

A reference to a test case. Test case references are canonically ordered lexicographically by these three factors: * First, by test_suite_name. * Second, by class_name. * Third, by name.

interface TestCaseReference {
className?: string;
name?: string;
testSuiteName?: string;
}

§Properties

§
className?: string
[src]

The name of the class.

§
name?: string
[src]

The name of the test case. Required.

§
testSuiteName?: string
[src]

The name of the test suite to which this test case belongs.