TestCase constructor

TestCase(
  1. String? scenarioGroupId,
  2. String? scenarioId,
  3. String? testCaseId,
  4. TestCaseStatus? status,
)

Implementation

TestCase(String? scenarioGroupId, String? scenarioId, String? testCaseId, TestCaseStatus? status)
 : _scenarioGroupId = scenarioGroupId,
 _scenarioId = scenarioId,
 _testCaseId = testCaseId,
 _status = status;