TestFailure constructor

TestFailure({
  1. String? actualOutputUrl,
  2. int? actualRedirectResponseCode,
  3. String? actualService,
  4. String? expectedOutputUrl,
  5. int? expectedRedirectResponseCode,
  6. String? expectedService,
  7. List<UrlMapTestHeader>? headers,
  8. String? host,
  9. String? path,
})

Implementation

TestFailure({
  this.actualOutputUrl,
  this.actualRedirectResponseCode,
  this.actualService,
  this.expectedOutputUrl,
  this.expectedRedirectResponseCode,
  this.expectedService,
  this.headers,
  this.host,
  this.path,
});