Skip to content

Commit 97e63e3

Browse files
committed
flutter pub run build_runner build && dart format --line-length=100 .
1 parent 0942739 commit 97e63e3

File tree

4 files changed

+36
-8
lines changed

4 files changed

+36
-8
lines changed

test/core/settings_test.mocks.dart

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,10 +1007,17 @@ class MockNutritionPlansProvider extends _i1.Mock implements _i20.NutritionPlans
10071007
) as _i18.Future<_i13.Ingredient?>);
10081008

10091009
@override
1010-
_i18.Future<void> logMealToDiary(_i11.Meal? meal) => (super.noSuchMethod(
1010+
_i18.Future<void> logMealToDiary(
1011+
_i11.Meal? meal,
1012+
DateTime? mealDateTime,
1013+
) =>
1014+
(super.noSuchMethod(
10111015
Invocation.method(
10121016
#logMealToDiary,
1013-
[meal],
1017+
[
1018+
meal,
1019+
mealDateTime,
1020+
],
10141021
),
10151022
returnValue: _i18.Future<void>.value(),
10161023
returnValueForMissingStub: _i18.Future<void>.value(),

test/nutrition/nutritional_meal_form_test.mocks.dart

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,10 +422,17 @@ class MockNutritionPlansProvider extends _i1.Mock implements _i8.NutritionPlansP
422422
) as _i9.Future<_i7.Ingredient?>);
423423

424424
@override
425-
_i9.Future<void> logMealToDiary(_i5.Meal? meal) => (super.noSuchMethod(
425+
_i9.Future<void> logMealToDiary(
426+
_i5.Meal? meal,
427+
DateTime? mealDateTime,
428+
) =>
429+
(super.noSuchMethod(
426430
Invocation.method(
427431
#logMealToDiary,
428-
[meal],
432+
[
433+
meal,
434+
mealDateTime,
435+
],
429436
),
430437
returnValue: _i9.Future<void>.value(),
431438
returnValueForMissingStub: _i9.Future<void>.value(),

test/nutrition/nutritional_plan_form_test.mocks.dart

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,10 +422,17 @@ class MockNutritionPlansProvider extends _i1.Mock implements _i8.NutritionPlansP
422422
) as _i9.Future<_i7.Ingredient?>);
423423

424424
@override
425-
_i9.Future<void> logMealToDiary(_i5.Meal? meal) => (super.noSuchMethod(
425+
_i9.Future<void> logMealToDiary(
426+
_i5.Meal? meal,
427+
DateTime? mealDateTime,
428+
) =>
429+
(super.noSuchMethod(
426430
Invocation.method(
427431
#logMealToDiary,
428-
[meal],
432+
[
433+
meal,
434+
mealDateTime,
435+
],
429436
),
430437
returnValue: _i9.Future<void>.value(),
431438
returnValueForMissingStub: _i9.Future<void>.value(),

test/weight/weight_screen_test.mocks.dart

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -747,10 +747,17 @@ class MockNutritionPlansProvider extends _i1.Mock implements _i16.NutritionPlans
747747
) as _i11.Future<_i9.Ingredient?>);
748748

749749
@override
750-
_i11.Future<void> logMealToDiary(_i7.Meal? meal) => (super.noSuchMethod(
750+
_i11.Future<void> logMealToDiary(
751+
_i7.Meal? meal,
752+
DateTime? mealDateTime,
753+
) =>
754+
(super.noSuchMethod(
751755
Invocation.method(
752756
#logMealToDiary,
753-
[meal],
757+
[
758+
meal,
759+
mealDateTime,
760+
],
754761
),
755762
returnValue: _i11.Future<void>.value(),
756763
returnValueForMissingStub: _i11.Future<void>.value(),

0 commit comments

Comments
 (0)