Base class for all DataTrue resource types

Hierarchy (view full)

Implements

Constructors

Properties

contextType: string = "suite"
jobID?: string
name: string
options: TestOptions = ...
testType: TestTypes = TestTypes.SIMULATION
childTypes: readonly string[] = ...
resourceType: string = "test"
resourceTypeRun: string = "TestScenario"

Methods

  • Run the resource in DataTrue

    Parameters

    • emailUsers: number[] = []

      an array of user IDs to whom the test results should be sent

    • variables: Record<string, string> = {}

      variables to set for the test run

    Returns Promise<string>

    Promise of the jobID

  • Set options from the passed options object

    Parameters

    • options: TestOptions

      the object to set options from

    • override: boolean = false

      whether to override the options object

    Returns void

  • Convert the resource to an Object

    Returns Promise<Record<string, any>>

    object representation of the resource

  • Create a resource from an object

    Parameters

    • obj: Record<string, any>

      object to create resource from

    • copy: boolean = false

      whether to create a copy of the resource or not (removes resource IDs)

    Returns Test

    new Resource