TestServiceConfig constructor

const TestServiceConfig({
  1. required String name,
  2. required String command,
  3. String? url,
  4. List<String> arguments = const [],
  5. String? workingDirectory,
  6. Map<String, String> environment = const {},
  7. String? readyUrl,
  8. int readyTimeoutMs = 10000,
})

Implementation

const TestServiceConfig({
  required this.name,
  required this.command,
  this.url,
  this.arguments = const [],
  this.workingDirectory,
  this.environment = const {},
  this.readyUrl,
  this.readyTimeoutMs = 10000,
});