TestCase constructor

TestCase({
  1. Duration? elapsedTime,
  2. Timestamp? endTime,
  3. String? skippedMessage,
  4. List<StackTrace>? stackTraces,
  5. Timestamp? startTime,
  6. String? status,
  7. String? testCaseId,
  8. TestCaseReference? testCaseReference,
  9. List<ToolOutputReference>? toolOutputs,
})

Implementation

TestCase({
  this.elapsedTime,
  this.endTime,
  this.skippedMessage,
  this.stackTraces,
  this.startTime,
  this.status,
  this.testCaseId,
  this.testCaseReference,
  this.toolOutputs,
});