LeakTestCase constructor

LeakTestCase({
  1. required String name,
  2. required TestCallback body,
  3. int notDisposedTotal = 0,
  4. int notGCedTotal = 0,
  5. int notDisposedInHelpers = 0,
  6. int notGCedInHelpers = 0,
})

Implementation

LeakTestCase({
  required this.name,
  required this.body,
  this.notDisposedTotal = 0,
  this.notGCedTotal = 0,
  this.notDisposedInHelpers = 0,
  this.notGCedInHelpers = 0,
});