Interface TestTableItem

interface TestTableItem {
    exceptionIfMldev?: string;
    exceptionIfVertex?: string;
    hasUnion?: boolean;
    name?: string;
    overrideReplayId?: string;
    parameters?: Record<string, unknown>;
    skipInApiMode?: string;
}

Properties

exceptionIfMldev?: string

Expects an exception for MLDev matching the string.

exceptionIfVertex?: string

Expects an exception for Vertex matching the string.

hasUnion?: boolean

True if the parameters contain an unsupported union type. This test will be skipped for languages that do not support the union type.

name?: string

The name of the test. This is used to derive the replay id.

overrideReplayId?: string

Use if you don't want to use the default replay id which is derived from the test name.

parameters?: Record<string, unknown>

The parameters to the test. Use pydantic models.

skipInApiMode?: string

When set to a reason string, this test will be skipped in the API mode. Use this flag for tests that can not be reproduced with the real API. E.g. a test that deletes a resource.

MMNEPVFCICPMFPCPTTAAATR