TestPlanTestCase constructor

const TestPlanTestCase({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirInteger? sequence,
  5. @JsonKey(name: '_sequence') Element? sequenceElement,
  6. List<Reference>? scope,
  7. List<TestPlanDependency1>? dependency,
  8. List<TestPlanTestRun>? testRun,
  9. List<TestPlanTestData>? testData,
  10. List<TestPlanAssertion>? assertion,
})

TestPlanTestCase A plan for executing testing on an artifact or specifications.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

extension_ ("extension") May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

modifierExtension May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).

sequence Sequence of test case - an ordinal number that indicates the order for the present test case in the test plan.

sequenceElement ("_sequence") Extensions for sequence

scope The scope or artifact covered by the case, when the individual test case is associated with a testable artifact.

dependency The required criteria to execute the test case - e.g. preconditions, previous tests.

testRun The actual test to be executed.

testData The test data used in the test case.

assertion The test assertions - the expectations of test results from the execution of the test case.

Implementation

const factory TestPlanTestCase({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  @JsonKey(name: 'id') String? fhirId,

  /// [extension_] ("extension") May be used to represent additional
  ///  information that is not part of the basic definition of the element.
  ///  To make the use of extensions safe and managable, there is a strict
  ///  set of governance applied to the definition and use of extensions.
  ///  Though any implementer can define an extension, there is a set of
  ///  requirements that SHALL be met as part of the definition of the
  ///  extension.
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [modifierExtension] May be used to represent additional information
  ///  that is not part of the basic definition of the element and that
  ///  modifies the understanding of the element in which it is contained
  ///  and/or the understanding of the containing element's descendants.
  ///  Usually modifier elements provide negation or qualification. To make
  ///  the use of extensions safe and managable, there is a strict set of
  ///  governance applied to the definition and use of extensions. Though any
  ///  implementer can define an extension, there is a set of requirements
  ///  that SHALL be met as part of the definition of the extension.
  ///  Applications processing a resource are required to check for modifier
  ///  extensions.Modifier extensions SHALL NOT change the meaning of any
  ///  elements on Resource or DomainResource (including cannot change the
  ///  meaning of modifierExtension itself).
  List<FhirExtension>? modifierExtension,

  /// [sequence] Sequence of test case - an ordinal number that indicates the
  ///  order for the present test case in the test plan.
  FhirInteger? sequence,

  /// [sequenceElement] ("_sequence") Extensions for sequence
  @JsonKey(name: '_sequence') Element? sequenceElement,

  /// [scope] The scope or artifact covered by the case, when the individual
  ///  test case is associated with a testable artifact.
  List<Reference>? scope,

  /// [dependency] The required criteria to execute the test case - e.g.
  ///  preconditions, previous tests.
  List<TestPlanDependency1>? dependency,

  /// [testRun] The actual test to be executed.
  List<TestPlanTestRun>? testRun,

  /// [testData] The test data used in the test case.
  List<TestPlanTestData>? testData,

  /// [assertion] The test assertions - the expectations of test results from
  ///  the execution of the test case.
  List<TestPlanAssertion>? assertion,
}) = _TestPlanTestCase;