testRecordingWidgets function

  1. @isTest
void testRecordingWidgets(
  1. String description,
  2. RecordingWidgetTesterCallback test, {
  3. bool useFakeAsync = false,
  4. bool? skip,
  5. Object? tags = defaultRecorderTagObject,
})

Implementation

@isTest
void testRecordingWidgets(
  String description,
  RecordingWidgetTesterCallback test, {
  bool useFakeAsync = false,
  bool? skip,
  Object? tags = defaultRecorderTagObject,
}) {
  _recorder.testRecordingWidgets(
    description,
    test,
    useFakeAsync: useFakeAsync,
    skip: skip,
    tags: tags,
  );
}