Skip to content

Commit

Permalink
Merge branch 'bugs-100125' of github.com:ZebraDevs/zeta_flutter into …
Browse files Browse the repository at this point in the history
…bugs-100125
  • Loading branch information
thelukewalton committed Jan 13, 2025
2 parents 5cce57c + 071add0 commit 7de20fb
Show file tree
Hide file tree
Showing 5 changed files with 1,768 additions and 2,110 deletions.
24 changes: 11 additions & 13 deletions test/src/components/search_bar/search_bar_test.mocks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,20 @@ import 'search_bar_test.dart' as _i2;
class MockISearchBarEvents extends _i1.Mock implements _i2.ISearchBarEvents {
@override
void onChange(String? text) => super.noSuchMethod(
Invocation.method(#onChange, [text]),
returnValueForMissingStub: null,
);
Invocation.method(#onChange, [text]),
returnValueForMissingStub: null,
);

@override
void onSubmit(String? text) => super.noSuchMethod(
Invocation.method(#onSubmit, [text]),
returnValueForMissingStub: null,
);
Invocation.method(#onSubmit, [text]),
returnValueForMissingStub: null,
);

@override
_i3.Future<String?> onSpeech() =>
(super.noSuchMethod(
Invocation.method(#onSpeech, []),
returnValue: _i3.Future<String?>.value(),
returnValueForMissingStub: _i3.Future<String?>.value(),
)
as _i3.Future<String?>);
_i3.Future<String?> onSpeech() => (super.noSuchMethod(
Invocation.method(#onSpeech, []),
returnValue: _i3.Future<String?>.value(),
returnValueForMissingStub: _i3.Future<String?>.value(),
) as _i3.Future<String?>);
}
Loading

0 comments on commit 7de20fb

Please sign in to comment.