Checks if the approved test cases file exists.
static bool isValuesApproved({String? path}) { final bool fileExists = File(path ?? _defaultPath).existsSync(); return fileExists; }