@cucumber/core
    Preparing search index...

    Interface AssembledTestCase

    A test case that has been assembled from hook and pickle steps

    interface AssembledTestCase {
        id: string;
        name: string;
        pickleId: string;
        sourceReference: SourceReference;
        testSteps: readonly AssembledTestStep[];
        toMessage(): TestCase;
    }
    Index

    Properties

    id: string

    A unique identifier for this test case

    name: string

    A non-unique name for this test case

    This could vary depending on the supplied naming strategy.

    pickleId: string

    The id of the pickle from which this test case is derived

    sourceReference: SourceReference

    A reference to the source of this test case in the Gherkin document

    testSteps: readonly AssembledTestStep[]

    An ordered array of test steps to be executed for this test case

    Methods

    • Converts the test case to a TestCase message

      Returns TestCase