Files
flutter/test/exercises/contribute_exercise_test.mocks.dart
2026-01-30 13:50:35 +01:00

944 lines
29 KiB
Dart

// Mocks generated by Mockito 5.4.6 from annotations
// in wger/test/exercises/contribute_exercise_test.dart.
// Do not manually edit this file.
// ignore_for_file: no_leading_underscores_for_library_prefixes
import 'dart:async' as _i15;
import 'dart:ui' as _i16;
import 'package:flutter/material.dart' as _i18;
import 'package:mockito/mockito.dart' as _i1;
import 'package:mockito/src/dummies.dart' as _i13;
import 'package:shared_preferences/shared_preferences.dart' as _i4;
import 'package:wger/database/exercises/exercise_database.dart' as _i5;
import 'package:wger/models/exercises/category.dart' as _i7;
import 'package:wger/models/exercises/equipment.dart' as _i8;
import 'package:wger/models/exercises/exercise.dart' as _i6;
import 'package:wger/models/exercises/exercise_submission.dart' as _i14;
import 'package:wger/models/exercises/exercise_submission_images.dart' as _i12;
import 'package:wger/models/exercises/language.dart' as _i10;
import 'package:wger/models/exercises/muscle.dart' as _i9;
import 'package:wger/models/exercises/variation.dart' as _i3;
import 'package:wger/models/user/profile.dart' as _i19;
import 'package:wger/providers/add_exercise.dart' as _i11;
import 'package:wger/providers/base_provider.dart' as _i2;
import 'package:wger/providers/exercises.dart' as _i20;
import 'package:wger/providers/user.dart' as _i17;
// ignore_for_file: type=lint
// ignore_for_file: avoid_redundant_argument_values
// ignore_for_file: avoid_setters_without_getters
// ignore_for_file: comment_references
// ignore_for_file: deprecated_member_use
// ignore_for_file: deprecated_member_use_from_same_package
// ignore_for_file: implementation_imports
// ignore_for_file: invalid_use_of_visible_for_testing_member
// ignore_for_file: must_be_immutable
// ignore_for_file: prefer_const_constructors
// ignore_for_file: unnecessary_parenthesis
// ignore_for_file: camel_case_types
// ignore_for_file: subtype_of_sealed_class
// ignore_for_file: invalid_use_of_internal_member
class _FakeWgerBaseProvider_0 extends _i1.SmartFake implements _i2.WgerBaseProvider {
_FakeWgerBaseProvider_0(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeVariation_1 extends _i1.SmartFake implements _i3.Variation {
_FakeVariation_1(Object parent, Invocation parentInvocation) : super(parent, parentInvocation);
}
class _FakeSharedPreferencesAsync_2 extends _i1.SmartFake implements _i4.SharedPreferencesAsync {
_FakeSharedPreferencesAsync_2(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeExerciseDatabase_3 extends _i1.SmartFake implements _i5.ExerciseDatabase {
_FakeExerciseDatabase_3(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeExercise_4 extends _i1.SmartFake implements _i6.Exercise {
_FakeExercise_4(Object parent, Invocation parentInvocation) : super(parent, parentInvocation);
}
class _FakeExerciseCategory_5 extends _i1.SmartFake implements _i7.ExerciseCategory {
_FakeExerciseCategory_5(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeEquipment_6 extends _i1.SmartFake implements _i8.Equipment {
_FakeEquipment_6(Object parent, Invocation parentInvocation) : super(parent, parentInvocation);
}
class _FakeMuscle_7 extends _i1.SmartFake implements _i9.Muscle {
_FakeMuscle_7(Object parent, Invocation parentInvocation) : super(parent, parentInvocation);
}
class _FakeLanguage_8 extends _i1.SmartFake implements _i10.Language {
_FakeLanguage_8(Object parent, Invocation parentInvocation) : super(parent, parentInvocation);
}
/// A class which mocks [AddExerciseProvider].
///
/// See the documentation for Mockito's code generation for more information.
class MockAddExerciseProvider extends _i1.Mock implements _i11.AddExerciseProvider {
MockAddExerciseProvider() {
_i1.throwOnMissingStub(this);
}
@override
_i2.WgerBaseProvider get baseProvider =>
(super.noSuchMethod(
Invocation.getter(#baseProvider),
returnValue: _FakeWgerBaseProvider_0(
this,
Invocation.getter(#baseProvider),
),
)
as _i2.WgerBaseProvider);
@override
List<_i12.ExerciseSubmissionImage> get exerciseImages =>
(super.noSuchMethod(
Invocation.getter(#exerciseImages),
returnValue: <_i12.ExerciseSubmissionImage>[],
)
as List<_i12.ExerciseSubmissionImage>);
@override
String get author =>
(super.noSuchMethod(
Invocation.getter(#author),
returnValue: _i13.dummyValue<String>(
this,
Invocation.getter(#author),
),
)
as String);
@override
List<String> get alternateNamesEn =>
(super.noSuchMethod(
Invocation.getter(#alternateNamesEn),
returnValue: <String>[],
)
as List<String>);
@override
List<String> get alternateNamesTrans =>
(super.noSuchMethod(
Invocation.getter(#alternateNamesTrans),
returnValue: <String>[],
)
as List<String>);
@override
List<_i8.Equipment> get equipment =>
(super.noSuchMethod(
Invocation.getter(#equipment),
returnValue: <_i8.Equipment>[],
)
as List<_i8.Equipment>);
@override
bool get newVariation =>
(super.noSuchMethod(Invocation.getter(#newVariation), returnValue: false) as bool);
@override
_i3.Variation get variation =>
(super.noSuchMethod(
Invocation.getter(#variation),
returnValue: _FakeVariation_1(this, Invocation.getter(#variation)),
)
as _i3.Variation);
@override
List<_i9.Muscle> get primaryMuscles =>
(super.noSuchMethod(
Invocation.getter(#primaryMuscles),
returnValue: <_i9.Muscle>[],
)
as List<_i9.Muscle>);
@override
List<_i9.Muscle> get secondaryMuscles =>
(super.noSuchMethod(
Invocation.getter(#secondaryMuscles),
returnValue: <_i9.Muscle>[],
)
as List<_i9.Muscle>);
@override
_i14.ExerciseSubmissionApi get exerciseApiObject =>
(super.noSuchMethod(
Invocation.getter(#exerciseApiObject),
returnValue: _i13.dummyValue<_i14.ExerciseSubmissionApi>(
this,
Invocation.getter(#exerciseApiObject),
),
)
as _i14.ExerciseSubmissionApi);
@override
set author(String? value) => super.noSuchMethod(
Invocation.setter(#author, value),
returnValueForMissingStub: null,
);
@override
set exerciseNameEn(String? value) => super.noSuchMethod(
Invocation.setter(#exerciseNameEn, value),
returnValueForMissingStub: null,
);
@override
set exerciseNameTrans(String? value) => super.noSuchMethod(
Invocation.setter(#exerciseNameTrans, value),
returnValueForMissingStub: null,
);
@override
set descriptionEn(String? value) => super.noSuchMethod(
Invocation.setter(#descriptionEn, value),
returnValueForMissingStub: null,
);
@override
set descriptionTrans(String? value) => super.noSuchMethod(
Invocation.setter(#descriptionTrans, value),
returnValueForMissingStub: null,
);
@override
set languageEn(_i10.Language? value) => super.noSuchMethod(
Invocation.setter(#languageEn, value),
returnValueForMissingStub: null,
);
@override
set languageTranslation(_i10.Language? value) => super.noSuchMethod(
Invocation.setter(#languageTranslation, value),
returnValueForMissingStub: null,
);
@override
set alternateNamesEn(List<String>? value) => super.noSuchMethod(
Invocation.setter(#alternateNamesEn, value),
returnValueForMissingStub: null,
);
@override
set alternateNamesTrans(List<String>? value) => super.noSuchMethod(
Invocation.setter(#alternateNamesTrans, value),
returnValueForMissingStub: null,
);
@override
set category(_i7.ExerciseCategory? value) => super.noSuchMethod(
Invocation.setter(#category, value),
returnValueForMissingStub: null,
);
@override
set equipment(List<_i8.Equipment>? equipment) => super.noSuchMethod(
Invocation.setter(#equipment, equipment),
returnValueForMissingStub: null,
);
@override
set variationConnectToExercise(int? value) => super.noSuchMethod(
Invocation.setter(#variationConnectToExercise, value),
returnValueForMissingStub: null,
);
@override
set variationId(int? variation) => super.noSuchMethod(
Invocation.setter(#variationId, variation),
returnValueForMissingStub: null,
);
@override
set primaryMuscles(List<_i9.Muscle>? muscles) => super.noSuchMethod(
Invocation.setter(#primaryMuscles, muscles),
returnValueForMissingStub: null,
);
@override
set secondaryMuscles(List<_i9.Muscle>? muscles) => super.noSuchMethod(
Invocation.setter(#secondaryMuscles, muscles),
returnValueForMissingStub: null,
);
@override
bool get hasListeners =>
(super.noSuchMethod(Invocation.getter(#hasListeners), returnValue: false) as bool);
@override
void clear() => super.noSuchMethod(
Invocation.method(#clear, []),
returnValueForMissingStub: null,
);
@override
void addExerciseImages(List<_i12.ExerciseSubmissionImage>? images) => super.noSuchMethod(
Invocation.method(#addExerciseImages, [images]),
returnValueForMissingStub: null,
);
@override
void removeImage(String? path) => super.noSuchMethod(
Invocation.method(#removeImage, [path]),
returnValueForMissingStub: null,
);
@override
_i15.Future<int> postExerciseToServer() =>
(super.noSuchMethod(
Invocation.method(#postExerciseToServer, []),
returnValue: _i15.Future<int>.value(0),
)
as _i15.Future<int>);
@override
_i15.Future<int> addExerciseSubmission() =>
(super.noSuchMethod(
Invocation.method(#addExerciseSubmission, []),
returnValue: _i15.Future<int>.value(0),
)
as _i15.Future<int>);
@override
_i15.Future<void> addImages(int? exerciseId) =>
(super.noSuchMethod(
Invocation.method(#addImages, [exerciseId]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<bool> validateLanguage(String? input, String? languageCode) =>
(super.noSuchMethod(
Invocation.method(#validateLanguage, [input, languageCode]),
returnValue: _i15.Future<bool>.value(false),
)
as _i15.Future<bool>);
@override
void addListener(_i16.VoidCallback? listener) => super.noSuchMethod(
Invocation.method(#addListener, [listener]),
returnValueForMissingStub: null,
);
@override
void removeListener(_i16.VoidCallback? listener) => super.noSuchMethod(
Invocation.method(#removeListener, [listener]),
returnValueForMissingStub: null,
);
@override
void dispose() => super.noSuchMethod(
Invocation.method(#dispose, []),
returnValueForMissingStub: null,
);
@override
void notifyListeners() => super.noSuchMethod(
Invocation.method(#notifyListeners, []),
returnValueForMissingStub: null,
);
}
/// A class which mocks [UserProvider].
///
/// See the documentation for Mockito's code generation for more information.
class MockUserProvider extends _i1.Mock implements _i17.UserProvider {
MockUserProvider() {
_i1.throwOnMissingStub(this);
}
@override
_i18.ThemeMode get themeMode =>
(super.noSuchMethod(
Invocation.getter(#themeMode),
returnValue: _i18.ThemeMode.system,
)
as _i18.ThemeMode);
@override
_i2.WgerBaseProvider get baseProvider =>
(super.noSuchMethod(
Invocation.getter(#baseProvider),
returnValue: _FakeWgerBaseProvider_0(
this,
Invocation.getter(#baseProvider),
),
)
as _i2.WgerBaseProvider);
@override
_i4.SharedPreferencesAsync get prefs =>
(super.noSuchMethod(
Invocation.getter(#prefs),
returnValue: _FakeSharedPreferencesAsync_2(
this,
Invocation.getter(#prefs),
),
)
as _i4.SharedPreferencesAsync);
@override
List<_i17.DashboardWidget> get dashboardWidgets =>
(super.noSuchMethod(
Invocation.getter(#dashboardWidgets),
returnValue: <_i17.DashboardWidget>[],
)
as List<_i17.DashboardWidget>);
@override
List<_i17.DashboardWidget> get allDashboardWidgets =>
(super.noSuchMethod(
Invocation.getter(#allDashboardWidgets),
returnValue: <_i17.DashboardWidget>[],
)
as List<_i17.DashboardWidget>);
@override
set themeMode(_i18.ThemeMode? value) => super.noSuchMethod(
Invocation.setter(#themeMode, value),
returnValueForMissingStub: null,
);
@override
set prefs(_i4.SharedPreferencesAsync? value) => super.noSuchMethod(
Invocation.setter(#prefs, value),
returnValueForMissingStub: null,
);
@override
set profile(_i19.Profile? value) => super.noSuchMethod(
Invocation.setter(#profile, value),
returnValueForMissingStub: null,
);
@override
bool get hasListeners =>
(super.noSuchMethod(Invocation.getter(#hasListeners), returnValue: false) as bool);
@override
void clear() => super.noSuchMethod(
Invocation.method(#clear, []),
returnValueForMissingStub: null,
);
@override
bool isDashboardWidgetVisible(_i17.DashboardWidget? key) =>
(super.noSuchMethod(
Invocation.method(#isDashboardWidgetVisible, [key]),
returnValue: false,
)
as bool);
@override
_i15.Future<void> setDashboardWidgetVisible(
_i17.DashboardWidget? key,
bool? visible,
) =>
(super.noSuchMethod(
Invocation.method(#setDashboardWidgetVisible, [key, visible]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> setDashboardOrder(int? oldIndex, int? newIndex) =>
(super.noSuchMethod(
Invocation.method(#setDashboardOrder, [oldIndex, newIndex]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
void setThemeMode(_i18.ThemeMode? mode) => super.noSuchMethod(
Invocation.method(#setThemeMode, [mode]),
returnValueForMissingStub: null,
);
@override
_i15.Future<void> fetchAndSetProfile() =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetProfile, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> saveProfile() =>
(super.noSuchMethod(
Invocation.method(#saveProfile, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> verifyEmail() =>
(super.noSuchMethod(
Invocation.method(#verifyEmail, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
void addListener(_i16.VoidCallback? listener) => super.noSuchMethod(
Invocation.method(#addListener, [listener]),
returnValueForMissingStub: null,
);
@override
void removeListener(_i16.VoidCallback? listener) => super.noSuchMethod(
Invocation.method(#removeListener, [listener]),
returnValueForMissingStub: null,
);
@override
void dispose() => super.noSuchMethod(
Invocation.method(#dispose, []),
returnValueForMissingStub: null,
);
@override
void notifyListeners() => super.noSuchMethod(
Invocation.method(#notifyListeners, []),
returnValueForMissingStub: null,
);
}
/// A class which mocks [ExercisesProvider].
///
/// See the documentation for Mockito's code generation for more information.
class MockExercisesProvider extends _i1.Mock implements _i20.ExercisesProvider {
MockExercisesProvider() {
_i1.throwOnMissingStub(this);
}
@override
_i2.WgerBaseProvider get baseProvider =>
(super.noSuchMethod(
Invocation.getter(#baseProvider),
returnValue: _FakeWgerBaseProvider_0(
this,
Invocation.getter(#baseProvider),
),
)
as _i2.WgerBaseProvider);
@override
_i5.ExerciseDatabase get database =>
(super.noSuchMethod(
Invocation.getter(#database),
returnValue: _FakeExerciseDatabase_3(
this,
Invocation.getter(#database),
),
)
as _i5.ExerciseDatabase);
@override
List<_i6.Exercise> get exercises =>
(super.noSuchMethod(
Invocation.getter(#exercises),
returnValue: <_i6.Exercise>[],
)
as List<_i6.Exercise>);
@override
List<_i6.Exercise> get filteredExercises =>
(super.noSuchMethod(
Invocation.getter(#filteredExercises),
returnValue: <_i6.Exercise>[],
)
as List<_i6.Exercise>);
@override
Map<int, List<_i6.Exercise>> get exerciseByVariation =>
(super.noSuchMethod(
Invocation.getter(#exerciseByVariation),
returnValue: <int, List<_i6.Exercise>>{},
)
as Map<int, List<_i6.Exercise>>);
@override
List<_i7.ExerciseCategory> get categories =>
(super.noSuchMethod(
Invocation.getter(#categories),
returnValue: <_i7.ExerciseCategory>[],
)
as List<_i7.ExerciseCategory>);
@override
List<_i9.Muscle> get muscles =>
(super.noSuchMethod(
Invocation.getter(#muscles),
returnValue: <_i9.Muscle>[],
)
as List<_i9.Muscle>);
@override
List<_i8.Equipment> get equipment =>
(super.noSuchMethod(
Invocation.getter(#equipment),
returnValue: <_i8.Equipment>[],
)
as List<_i8.Equipment>);
@override
List<_i10.Language> get languages =>
(super.noSuchMethod(
Invocation.getter(#languages),
returnValue: <_i10.Language>[],
)
as List<_i10.Language>);
@override
set database(_i5.ExerciseDatabase? value) => super.noSuchMethod(
Invocation.setter(#database, value),
returnValueForMissingStub: null,
);
@override
set exercises(List<_i6.Exercise>? value) => super.noSuchMethod(
Invocation.setter(#exercises, value),
returnValueForMissingStub: null,
);
@override
set filteredExercises(List<_i6.Exercise>? newFilteredExercises) => super.noSuchMethod(
Invocation.setter(#filteredExercises, newFilteredExercises),
returnValueForMissingStub: null,
);
@override
set languages(List<_i10.Language>? languages) => super.noSuchMethod(
Invocation.setter(#languages, languages),
returnValueForMissingStub: null,
);
@override
bool get hasListeners =>
(super.noSuchMethod(Invocation.getter(#hasListeners), returnValue: false) as bool);
@override
_i15.Future<void> setFilters(_i20.Filters? newFilters) =>
(super.noSuchMethod(
Invocation.method(#setFilters, [newFilters]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
void initFilters() => super.noSuchMethod(
Invocation.method(#initFilters, []),
returnValueForMissingStub: null,
);
@override
_i15.Future<void> findByFilters() =>
(super.noSuchMethod(
Invocation.method(#findByFilters, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
void clear() => super.noSuchMethod(
Invocation.method(#clear, []),
returnValueForMissingStub: null,
);
@override
_i6.Exercise findExerciseById(int? id) =>
(super.noSuchMethod(
Invocation.method(#findExerciseById, [id]),
returnValue: _FakeExercise_4(
this,
Invocation.method(#findExerciseById, [id]),
),
)
as _i6.Exercise);
@override
List<_i6.Exercise> findExercisesByVariationId(
int? variationId, {
int? exerciseIdToExclude,
}) =>
(super.noSuchMethod(
Invocation.method(
#findExercisesByVariationId,
[variationId],
{#exerciseIdToExclude: exerciseIdToExclude},
),
returnValue: <_i6.Exercise>[],
)
as List<_i6.Exercise>);
@override
_i7.ExerciseCategory findCategoryById(int? id) =>
(super.noSuchMethod(
Invocation.method(#findCategoryById, [id]),
returnValue: _FakeExerciseCategory_5(
this,
Invocation.method(#findCategoryById, [id]),
),
)
as _i7.ExerciseCategory);
@override
_i8.Equipment findEquipmentById(int? id) =>
(super.noSuchMethod(
Invocation.method(#findEquipmentById, [id]),
returnValue: _FakeEquipment_6(
this,
Invocation.method(#findEquipmentById, [id]),
),
)
as _i8.Equipment);
@override
_i9.Muscle findMuscleById(int? id) =>
(super.noSuchMethod(
Invocation.method(#findMuscleById, [id]),
returnValue: _FakeMuscle_7(
this,
Invocation.method(#findMuscleById, [id]),
),
)
as _i9.Muscle);
@override
_i10.Language findLanguageById(int? id) =>
(super.noSuchMethod(
Invocation.method(#findLanguageById, [id]),
returnValue: _FakeLanguage_8(
this,
Invocation.method(#findLanguageById, [id]),
),
)
as _i10.Language);
@override
_i15.Future<void> fetchAndSetCategoriesFromApi() =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetCategoriesFromApi, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetMusclesFromApi() =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetMusclesFromApi, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetEquipmentsFromApi() =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetEquipmentsFromApi, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetLanguagesFromApi() =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetLanguagesFromApi, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetAllExercises() =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetAllExercises, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<_i6.Exercise?> fetchAndSetExercise(int? exerciseId) =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetExercise, [exerciseId]),
returnValue: _i15.Future<_i6.Exercise?>.value(),
)
as _i15.Future<_i6.Exercise?>);
@override
_i15.Future<_i6.Exercise> handleUpdateExerciseFromApi(
_i5.ExerciseDatabase? database,
int? exerciseId,
) =>
(super.noSuchMethod(
Invocation.method(#handleUpdateExerciseFromApi, [
database,
exerciseId,
]),
returnValue: _i15.Future<_i6.Exercise>.value(
_FakeExercise_4(
this,
Invocation.method(#handleUpdateExerciseFromApi, [
database,
exerciseId,
]),
),
),
)
as _i15.Future<_i6.Exercise>);
@override
_i15.Future<void> initCacheTimesLocalPrefs({bool? forceInit = false}) =>
(super.noSuchMethod(
Invocation.method(#initCacheTimesLocalPrefs, [], {
#forceInit: forceInit,
}),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> clearAllCachesAndPrefs() =>
(super.noSuchMethod(
Invocation.method(#clearAllCachesAndPrefs, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetInitialData() =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetInitialData, []),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> setExercisesFromDatabase(
_i5.ExerciseDatabase? database, {
bool? forceDeleteCache = false,
}) =>
(super.noSuchMethod(
Invocation.method(
#setExercisesFromDatabase,
[database],
{#forceDeleteCache: forceDeleteCache},
),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> updateExerciseCache(_i5.ExerciseDatabase? database) =>
(super.noSuchMethod(
Invocation.method(#updateExerciseCache, [database]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetMuscles(_i5.ExerciseDatabase? database) =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetMuscles, [database]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetCategories(_i5.ExerciseDatabase? database) =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetCategories, [database]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetLanguages(_i5.ExerciseDatabase? database) =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetLanguages, [database]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<void> fetchAndSetEquipments(_i5.ExerciseDatabase? database) =>
(super.noSuchMethod(
Invocation.method(#fetchAndSetEquipments, [database]),
returnValue: _i15.Future<void>.value(),
returnValueForMissingStub: _i15.Future<void>.value(),
)
as _i15.Future<void>);
@override
_i15.Future<List<_i6.Exercise>> searchExercise(
String? name, {
String? languageCode = 'en',
bool? searchEnglish = false,
}) =>
(super.noSuchMethod(
Invocation.method(
#searchExercise,
[name],
{#languageCode: languageCode, #searchEnglish: searchEnglish},
),
returnValue: _i15.Future<List<_i6.Exercise>>.value(
<_i6.Exercise>[],
),
)
as _i15.Future<List<_i6.Exercise>>);
@override
void addListener(_i16.VoidCallback? listener) => super.noSuchMethod(
Invocation.method(#addListener, [listener]),
returnValueForMissingStub: null,
);
@override
void removeListener(_i16.VoidCallback? listener) => super.noSuchMethod(
Invocation.method(#removeListener, [listener]),
returnValueForMissingStub: null,
);
@override
void dispose() => super.noSuchMethod(
Invocation.method(#dispose, []),
returnValueForMissingStub: null,
);
@override
void notifyListeners() => super.noSuchMethod(
Invocation.method(#notifyListeners, []),
returnValueForMissingStub: null,
);
}