UnitTestGenerator constructor

UnitTestGenerator({
  1. required String className,
  2. required String importPath,
  3. List<String> methods = const [],
  4. bool isTopLevel = false,
  5. String? mockClassName,
  6. String? mockImportPath,
})

Implementation

UnitTestGenerator({
  required this.className,
  required this.importPath,
  this.methods = const [],
  this.isTopLevel = false,
  this.mockClassName,
  this.mockImportPath,
});