TestResult constructor

TestResult({
  1. List<String>? debugMessages,
  2. SourcePosition? errorPosition,
  3. List<ExpressionReport>? expressionReports,
  4. List<FunctionCall>? functionCalls,
  5. String? state,
  6. List<VisitedExpression>? visitedExpressions,
})

Implementation

TestResult({
  this.debugMessages,
  this.errorPosition,
  this.expressionReports,
  this.functionCalls,
  this.state,
  this.visitedExpressions,
});