testRecording function

  1. @isTest
void testRecording(
  1. String description,
  2. RecordingTesterCallback body, {
  3. bool? skip,
  4. Object? tags = defaultRecorderTagObject,
})

Implementation

@isTest
void testRecording(
  String description,
  RecordingTesterCallback<dynamic> body, {
  bool? skip,
  Object? tags = defaultRecorderTagObject,
}) {
  _recorder.testRecording(description, body, skip: skip, tags: tags);
}