saveApprovedCase static method

void saveApprovedCase(
  1. dynamic approvedCase, {
  2. String? filePath,
  3. String? fileName,
})

Saves approved test cases to a Dart file.

Implementation

static void saveApprovedCase(dynamic approvedCase, {String? filePath, String? fileName}) {
  saveCases(null, approvedCase, filePath: filePath, fileName: fileName);
}