stack_wallet/test/pages/send_view/send_view_test.mocks.dart

1720 lines
50 KiB
Dart
Raw Normal View History

2023-07-27 21:08:43 +00:00
// Mocks generated by Mockito 5.4.2 from annotations
// in stackwallet/test/pages/send_view/send_view_test.dart.
2022-10-20 14:38:42 +00:00
// Do not manually edit this file.
// ignore_for_file: no_leading_underscores_for_library_prefixes
import 'dart:async' as _i14;
import 'dart:typed_data' as _i22;
import 'dart:ui' as _i17;
2022-10-20 14:38:42 +00:00
import 'package:mockito/mockito.dart' as _i1;
import 'package:stackwallet/db/isar/main_db.dart' as _i3;
import 'package:stackwallet/models/balance.dart' as _i10;
import 'package:stackwallet/models/isar/models/isar_models.dart' as _i27;
import 'package:stackwallet/models/isar/stack_theme.dart' as _i21;
import 'package:stackwallet/models/node_model.dart' as _i18;
import 'package:stackwallet/models/paymint/fee_object_model.dart' as _i9;
import 'package:stackwallet/networking/http.dart' as _i7;
import 'package:stackwallet/services/coins/coin_service.dart' as _i26;
import 'package:stackwallet/services/locale_service.dart' as _i19;
2023-10-19 17:26:14 +00:00
import 'package:stackwallet/services/mixins/fusion_wallet_interface.dart'
as _i8;
import 'package:stackwallet/services/node_service.dart' as _i2;
import 'package:stackwallet/services/wallets.dart' as _i12;
import 'package:stackwallet/services/wallets_service.dart' as _i16;
import 'package:stackwallet/themes/theme_service.dart' as _i20;
import 'package:stackwallet/utilities/amount/amount.dart' as _i11;
import 'package:stackwallet/utilities/amount/amount_unit.dart' as _i25;
import 'package:stackwallet/utilities/enums/backup_frequency_type.dart' as _i24;
import 'package:stackwallet/utilities/enums/coin_enum.dart' as _i13;
import 'package:stackwallet/utilities/enums/sync_type_enum.dart' as _i23;
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart'
as _i6;
import 'package:stackwallet/utilities/prefs.dart' as _i15;
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart'
as _i4;
import 'package:stackwallet/wallets/wallet/wallet.dart' as _i5;
2022-10-20 14:38:42 +00:00
// 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: implementation_imports
// ignore_for_file: invalid_use_of_visible_for_testing_member
// ignore_for_file: prefer_const_constructors
// ignore_for_file: unnecessary_parenthesis
// ignore_for_file: camel_case_types
// ignore_for_file: subtype_of_sealed_class
class _FakeNodeService_0 extends _i1.SmartFake implements _i2.NodeService {
_FakeNodeService_0(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeMainDB_1 extends _i1.SmartFake implements _i3.MainDB {
_FakeMainDB_1(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeWallet_2<T extends _i4.CryptoCurrency> extends _i1.SmartFake
implements _i5.Wallet<T> {
_FakeWallet_2(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeSecureStorageInterface_3 extends _i1.SmartFake
implements _i6.SecureStorageInterface {
_FakeSecureStorageInterface_3(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeHTTP_4 extends _i1.SmartFake implements _i7.HTTP {
_FakeHTTP_4(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeFusionInfo_5 extends _i1.SmartFake implements _i8.FusionInfo {
_FakeFusionInfo_5(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeFeeObject_6 extends _i1.SmartFake implements _i9.FeeObject {
_FakeFeeObject_6(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeBalance_7 extends _i1.SmartFake implements _i10.Balance {
_FakeBalance_7(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
class _FakeAmount_8 extends _i1.SmartFake implements _i11.Amount {
_FakeAmount_8(
2022-10-20 14:38:42 +00:00
Object parent,
Invocation parentInvocation,
) : super(
parent,
parentInvocation,
);
}
/// A class which mocks [Wallets].
///
/// See the documentation for Mockito's code generation for more information.
class MockWallets extends _i1.Mock implements _i12.Wallets {
2022-10-20 14:38:42 +00:00
MockWallets() {
_i1.throwOnMissingStub(this);
}
@override
_i2.NodeService get nodeService => (super.noSuchMethod(
Invocation.getter(#nodeService),
returnValue: _FakeNodeService_0(
2022-10-20 14:38:42 +00:00
this,
Invocation.getter(#nodeService),
2022-10-20 14:38:42 +00:00
),
) as _i2.NodeService);
2022-10-20 14:38:42 +00:00
@override
set nodeService(_i2.NodeService? _nodeService) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.setter(
#nodeService,
_nodeService,
2022-10-20 14:38:42 +00:00
),
returnValueForMissingStub: null,
);
@override
_i3.MainDB get mainDB => (super.noSuchMethod(
Invocation.getter(#mainDB),
returnValue: _FakeMainDB_1(
2022-10-20 14:38:42 +00:00
this,
Invocation.getter(#mainDB),
2022-10-20 14:38:42 +00:00
),
) as _i3.MainDB);
2022-10-20 14:38:42 +00:00
@override
set mainDB(_i3.MainDB? _mainDB) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.setter(
#mainDB,
_mainDB,
2022-10-20 14:38:42 +00:00
),
returnValueForMissingStub: null,
);
@override
bool get hasWallets => (super.noSuchMethod(
Invocation.getter(#hasWallets),
returnValue: false,
) as bool);
@override
List<_i5.Wallet<_i4.CryptoCurrency>> get wallets => (super.noSuchMethod(
Invocation.getter(#wallets),
returnValue: <_i5.Wallet<_i4.CryptoCurrency>>[],
) as List<_i5.Wallet<_i4.CryptoCurrency>>);
@override
List<({_i13.Coin coin, List<_i5.Wallet<_i4.CryptoCurrency>> wallets})>
get walletsByCoin => (super.noSuchMethod(
Invocation.getter(#walletsByCoin),
returnValue: <({
_i13.Coin coin,
List<_i5.Wallet<_i4.CryptoCurrency>> wallets
})>[],
2023-02-13 19:01:06 +00:00
) as List<
({
_i13.Coin coin,
List<_i5.Wallet<_i4.CryptoCurrency>> wallets
})>);
2022-10-20 14:38:42 +00:00
@override
_i5.Wallet<_i4.CryptoCurrency> getWallet(String? walletId) =>
2023-01-10 16:02:54 +00:00
(super.noSuchMethod(
Invocation.method(
#getWallet,
2022-10-20 14:38:42 +00:00
[walletId],
),
returnValue: _FakeWallet_2<_i4.CryptoCurrency>(
2022-10-20 14:38:42 +00:00
this,
Invocation.method(
#getWallet,
2022-10-20 14:38:42 +00:00
[walletId],
),
),
) as _i5.Wallet<_i4.CryptoCurrency>);
2022-10-20 14:38:42 +00:00
@override
void addWallet(_i5.Wallet<_i4.CryptoCurrency>? wallet) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#addWallet,
[wallet],
2022-10-20 14:38:42 +00:00
),
returnValueForMissingStub: null,
);
@override
_i14.Future<void> deleteWallet(
String? walletId,
_i6.SecureStorageInterface? secureStorage,
) =>
(super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#deleteWallet,
[
walletId,
secureStorage,
],
2022-10-20 14:38:42 +00:00
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> load(
_i15.Prefs? prefs,
_i3.MainDB? mainDB,
) =>
(super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#load,
[
prefs,
mainDB,
],
2022-10-20 14:38:42 +00:00
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> loadAfterStackRestore(
_i15.Prefs? prefs,
List<_i5.Wallet<_i4.CryptoCurrency>>? wallets,
2022-10-20 14:38:42 +00:00
) =>
(super.noSuchMethod(
Invocation.method(
#loadAfterStackRestore,
[
prefs,
wallets,
2022-10-20 14:38:42 +00:00
],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
}
/// A class which mocks [WalletsService].
///
/// See the documentation for Mockito's code generation for more information.
class MockWalletsService extends _i1.Mock implements _i16.WalletsService {
2022-10-20 14:38:42 +00:00
MockWalletsService() {
_i1.throwOnMissingStub(this);
}
@override
_i14.Future<Map<String, _i16.WalletInfo>> get walletNames =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(
Invocation.getter(#walletNames),
returnValue: _i14.Future<Map<String, _i16.WalletInfo>>.value(
<String, _i16.WalletInfo>{}),
) as _i14.Future<Map<String, _i16.WalletInfo>>);
2022-10-20 14:38:42 +00:00
@override
bool get hasListeners => (super.noSuchMethod(
Invocation.getter(#hasListeners),
returnValue: false,
) as bool);
@override
_i14.Future<bool> renameWallet({
2022-10-20 14:38:42 +00:00
required String? from,
required String? to,
required bool? shouldNotifyListeners,
}) =>
(super.noSuchMethod(
Invocation.method(
#renameWallet,
[],
{
#from: from,
#to: to,
#shouldNotifyListeners: shouldNotifyListeners,
},
),
returnValue: _i14.Future<bool>.value(false),
) as _i14.Future<bool>);
2022-10-20 14:38:42 +00:00
@override
Map<String, _i16.WalletInfo> fetchWalletsData() => (super.noSuchMethod(
2023-03-31 15:39:17 +00:00
Invocation.method(
#fetchWalletsData,
[],
),
returnValue: <String, _i16.WalletInfo>{},
) as Map<String, _i16.WalletInfo>);
2023-03-31 15:39:17 +00:00
@override
_i14.Future<void> addExistingStackWallet({
2022-10-20 14:38:42 +00:00
required String? name,
required String? walletId,
required _i13.Coin? coin,
2022-10-20 14:38:42 +00:00
required bool? shouldNotifyListeners,
}) =>
(super.noSuchMethod(
Invocation.method(
#addExistingStackWallet,
[],
{
#name: name,
#walletId: walletId,
#coin: coin,
#shouldNotifyListeners: shouldNotifyListeners,
},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<String?> addNewWallet({
2022-10-20 14:38:42 +00:00
required String? name,
required _i13.Coin? coin,
2022-10-20 14:38:42 +00:00
required bool? shouldNotifyListeners,
}) =>
(super.noSuchMethod(
Invocation.method(
#addNewWallet,
[],
{
#name: name,
#coin: coin,
#shouldNotifyListeners: shouldNotifyListeners,
},
),
returnValue: _i14.Future<String?>.value(),
) as _i14.Future<String?>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<List<String>> getFavoriteWalletIds() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#getFavoriteWalletIds,
[],
),
returnValue: _i14.Future<List<String>>.value(<String>[]),
) as _i14.Future<List<String>>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> saveFavoriteWalletIds(List<String>? walletIds) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(
Invocation.method(
#saveFavoriteWalletIds,
[walletIds],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> addFavorite(String? walletId) => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#addFavorite,
[walletId],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> removeFavorite(String? walletId) => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#removeFavorite,
[walletId],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> moveFavorite({
2022-10-20 14:38:42 +00:00
required int? fromIndex,
required int? toIndex,
}) =>
(super.noSuchMethod(
Invocation.method(
#moveFavorite,
[],
{
#fromIndex: fromIndex,
#toIndex: toIndex,
},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<bool> checkForDuplicate(String? name) => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#checkForDuplicate,
[name],
),
returnValue: _i14.Future<bool>.value(false),
) as _i14.Future<bool>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<String?> getWalletId(String? walletName) => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#getWalletId,
[walletName],
),
returnValue: _i14.Future<String?>.value(),
) as _i14.Future<String?>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<bool> isMnemonicVerified({required String? walletId}) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(
Invocation.method(
#isMnemonicVerified,
[],
{#walletId: walletId},
),
returnValue: _i14.Future<bool>.value(false),
) as _i14.Future<bool>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> setMnemonicVerified({required String? walletId}) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(
Invocation.method(
#setMnemonicVerified,
[],
{#walletId: walletId},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<int> deleteWallet(
2022-10-20 14:38:42 +00:00
String? name,
bool? shouldNotifyListeners,
) =>
(super.noSuchMethod(
Invocation.method(
#deleteWallet,
[
name,
shouldNotifyListeners,
],
),
returnValue: _i14.Future<int>.value(0),
) as _i14.Future<int>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> refreshWallets(bool? shouldNotifyListeners) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(
Invocation.method(
#refreshWallets,
[shouldNotifyListeners],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
void addListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#addListener,
[listener],
),
returnValueForMissingStub: null,
);
@override
void removeListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
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 [NodeService].
///
/// See the documentation for Mockito's code generation for more information.
class MockNodeService extends _i1.Mock implements _i2.NodeService {
2022-10-20 14:38:42 +00:00
MockNodeService() {
_i1.throwOnMissingStub(this);
}
@override
_i6.SecureStorageInterface get secureStorageInterface => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#secureStorageInterface),
returnValue: _FakeSecureStorageInterface_3(
2022-10-20 14:38:42 +00:00
this,
Invocation.getter(#secureStorageInterface),
),
) as _i6.SecureStorageInterface);
2022-10-20 14:38:42 +00:00
@override
List<_i18.NodeModel> get primaryNodes => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#primaryNodes),
returnValue: <_i18.NodeModel>[],
) as List<_i18.NodeModel>);
2022-10-20 14:38:42 +00:00
@override
List<_i18.NodeModel> get nodes => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#nodes),
returnValue: <_i18.NodeModel>[],
) as List<_i18.NodeModel>);
2022-10-20 14:38:42 +00:00
@override
bool get hasListeners => (super.noSuchMethod(
Invocation.getter(#hasListeners),
returnValue: false,
) as bool);
@override
_i14.Future<void> updateDefaults() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#updateDefaults,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> setPrimaryNodeFor({
required _i13.Coin? coin,
required _i18.NodeModel? node,
2022-10-20 14:38:42 +00:00
bool? shouldNotifyListeners = false,
}) =>
(super.noSuchMethod(
Invocation.method(
#setPrimaryNodeFor,
[],
{
#coin: coin,
#node: node,
#shouldNotifyListeners: shouldNotifyListeners,
},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i18.NodeModel? getPrimaryNodeFor({required _i13.Coin? coin}) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(Invocation.method(
#getPrimaryNodeFor,
[],
{#coin: coin},
)) as _i18.NodeModel?);
2022-10-20 14:38:42 +00:00
@override
List<_i18.NodeModel> getNodesFor(_i13.Coin? coin) => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#getNodesFor,
[coin],
),
returnValue: <_i18.NodeModel>[],
) as List<_i18.NodeModel>);
2022-10-20 14:38:42 +00:00
@override
_i18.NodeModel? getNodeById({required String? id}) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(Invocation.method(
#getNodeById,
[],
{#id: id},
)) as _i18.NodeModel?);
2022-10-20 14:38:42 +00:00
@override
List<_i18.NodeModel> failoverNodesFor({required _i13.Coin? coin}) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(
Invocation.method(
#failoverNodesFor,
[],
{#coin: coin},
),
returnValue: <_i18.NodeModel>[],
) as List<_i18.NodeModel>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> add(
_i18.NodeModel? node,
2022-10-20 14:38:42 +00:00
String? password,
bool? shouldNotifyListeners,
) =>
(super.noSuchMethod(
Invocation.method(
#add,
[
node,
password,
shouldNotifyListeners,
],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> delete(
2022-10-20 14:38:42 +00:00
String? id,
bool? shouldNotifyListeners,
) =>
(super.noSuchMethod(
Invocation.method(
#delete,
[
id,
shouldNotifyListeners,
],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> setEnabledState(
2022-10-20 14:38:42 +00:00
String? id,
bool? enabled,
bool? shouldNotifyListeners,
) =>
(super.noSuchMethod(
Invocation.method(
#setEnabledState,
[
id,
enabled,
shouldNotifyListeners,
],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> edit(
_i18.NodeModel? editedNode,
2022-10-20 14:38:42 +00:00
String? password,
bool? shouldNotifyListeners,
) =>
(super.noSuchMethod(
Invocation.method(
#edit,
[
editedNode,
password,
shouldNotifyListeners,
],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> updateCommunityNodes() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#updateCommunityNodes,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
void addListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#addListener,
[listener],
),
returnValueForMissingStub: null,
);
@override
void removeListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
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 [LocaleService].
///
/// See the documentation for Mockito's code generation for more information.
class MockLocaleService extends _i1.Mock implements _i19.LocaleService {
2022-10-20 14:38:42 +00:00
MockLocaleService() {
_i1.throwOnMissingStub(this);
}
@override
String get locale => (super.noSuchMethod(
Invocation.getter(#locale),
returnValue: '',
) as String);
@override
bool get hasListeners => (super.noSuchMethod(
Invocation.getter(#hasListeners),
returnValue: false,
) as bool);
@override
_i14.Future<void> loadLocale({bool? notify = true}) => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#loadLocale,
[],
{#notify: notify},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
void addListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#addListener,
[listener],
),
returnValueForMissingStub: null,
);
@override
void removeListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
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,
);
}
2023-05-12 20:02:04 +00:00
/// A class which mocks [ThemeService].
///
/// See the documentation for Mockito's code generation for more information.
class MockThemeService extends _i1.Mock implements _i20.ThemeService {
2023-05-12 20:02:04 +00:00
MockThemeService() {
_i1.throwOnMissingStub(this);
}
2023-09-13 16:58:02 +00:00
@override
_i7.HTTP get client => (super.noSuchMethod(
2023-09-13 16:58:02 +00:00
Invocation.getter(#client),
returnValue: _FakeHTTP_4(
2023-09-13 16:58:02 +00:00
this,
Invocation.getter(#client),
),
) as _i7.HTTP);
2023-09-13 16:58:02 +00:00
@override
set client(_i7.HTTP? _client) => super.noSuchMethod(
2023-09-13 16:58:02 +00:00
Invocation.setter(
#client,
_client,
),
returnValueForMissingStub: null,
);
2023-05-12 20:02:04 +00:00
@override
_i3.MainDB get db => (super.noSuchMethod(
2023-05-12 20:02:04 +00:00
Invocation.getter(#db),
returnValue: _FakeMainDB_1(
2023-05-12 20:02:04 +00:00
this,
Invocation.getter(#db),
),
) as _i3.MainDB);
2023-05-12 20:02:04 +00:00
@override
List<_i21.StackTheme> get installedThemes => (super.noSuchMethod(
2023-05-12 20:02:04 +00:00
Invocation.getter(#installedThemes),
returnValue: <_i21.StackTheme>[],
) as List<_i21.StackTheme>);
2023-05-12 20:02:04 +00:00
@override
void init(_i3.MainDB? db) => super.noSuchMethod(
2023-05-12 20:02:04 +00:00
Invocation.method(
#init,
[db],
),
returnValueForMissingStub: null,
);
@override
_i14.Future<void> install({required _i22.Uint8List? themeArchiveData}) =>
2023-05-12 20:02:04 +00:00
(super.noSuchMethod(
Invocation.method(
#install,
[],
{#themeArchiveData: themeArchiveData},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2023-05-12 20:02:04 +00:00
@override
_i14.Future<void> remove({required String? themeId}) => (super.noSuchMethod(
2023-05-12 20:02:04 +00:00
Invocation.method(
#remove,
[],
{#themeId: themeId},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2023-05-12 20:02:04 +00:00
@override
_i14.Future<void> checkDefaultThemesOnStartup() => (super.noSuchMethod(
2023-05-29 16:30:41 +00:00
Invocation.method(
#checkDefaultThemesOnStartup,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2023-05-29 16:30:41 +00:00
@override
_i14.Future<bool> verifyInstalled({required String? themeId}) =>
2023-05-12 20:02:04 +00:00
(super.noSuchMethod(
Invocation.method(
#verifyInstalled,
[],
{#themeId: themeId},
),
returnValue: _i14.Future<bool>.value(false),
) as _i14.Future<bool>);
2023-05-12 20:02:04 +00:00
@override
_i14.Future<List<_i20.StackThemeMetaData>> fetchThemes() =>
2023-05-12 20:02:04 +00:00
(super.noSuchMethod(
Invocation.method(
#fetchThemes,
[],
),
returnValue: _i14.Future<List<_i20.StackThemeMetaData>>.value(
<_i20.StackThemeMetaData>[]),
) as _i14.Future<List<_i20.StackThemeMetaData>>);
2023-05-12 20:02:04 +00:00
@override
_i14.Future<_i22.Uint8List> fetchTheme(
{required _i20.StackThemeMetaData? themeMetaData}) =>
2023-05-12 20:02:04 +00:00
(super.noSuchMethod(
Invocation.method(
#fetchTheme,
[],
{#themeMetaData: themeMetaData},
),
returnValue: _i14.Future<_i22.Uint8List>.value(_i22.Uint8List(0)),
) as _i14.Future<_i22.Uint8List>);
2023-05-12 20:02:04 +00:00
@override
_i21.StackTheme? getTheme({required String? themeId}) =>
2023-05-12 20:02:04 +00:00
(super.noSuchMethod(Invocation.method(
#getTheme,
[],
{#themeId: themeId},
)) as _i21.StackTheme?);
2023-05-12 20:02:04 +00:00
}
2022-10-20 14:38:42 +00:00
/// A class which mocks [Prefs].
///
/// See the documentation for Mockito's code generation for more information.
class MockPrefs extends _i1.Mock implements _i15.Prefs {
2022-10-20 14:38:42 +00:00
MockPrefs() {
_i1.throwOnMissingStub(this);
}
@override
bool get isInitialized => (super.noSuchMethod(
Invocation.getter(#isInitialized),
returnValue: false,
) as bool);
@override
int get lastUnlockedTimeout => (super.noSuchMethod(
Invocation.getter(#lastUnlockedTimeout),
returnValue: 0,
) as int);
@override
set lastUnlockedTimeout(int? lastUnlockedTimeout) => super.noSuchMethod(
Invocation.setter(
#lastUnlockedTimeout,
lastUnlockedTimeout,
),
returnValueForMissingStub: null,
);
@override
int get lastUnlocked => (super.noSuchMethod(
Invocation.getter(#lastUnlocked),
returnValue: 0,
) as int);
@override
set lastUnlocked(int? lastUnlocked) => super.noSuchMethod(
Invocation.setter(
#lastUnlocked,
lastUnlocked,
),
returnValueForMissingStub: null,
);
@override
int get currentNotificationId => (super.noSuchMethod(
Invocation.getter(#currentNotificationId),
returnValue: 0,
) as int);
@override
List<String> get walletIdsSyncOnStartup => (super.noSuchMethod(
Invocation.getter(#walletIdsSyncOnStartup),
returnValue: <String>[],
) as List<String>);
@override
set walletIdsSyncOnStartup(List<String>? walletIdsSyncOnStartup) =>
super.noSuchMethod(
Invocation.setter(
#walletIdsSyncOnStartup,
walletIdsSyncOnStartup,
),
returnValueForMissingStub: null,
);
@override
_i23.SyncingType get syncType => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#syncType),
returnValue: _i23.SyncingType.currentWalletOnly,
) as _i23.SyncingType);
2022-10-20 14:38:42 +00:00
@override
set syncType(_i23.SyncingType? syncType) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.setter(
#syncType,
syncType,
),
returnValueForMissingStub: null,
);
@override
bool get wifiOnly => (super.noSuchMethod(
Invocation.getter(#wifiOnly),
returnValue: false,
) as bool);
@override
set wifiOnly(bool? wifiOnly) => super.noSuchMethod(
Invocation.setter(
#wifiOnly,
wifiOnly,
),
returnValueForMissingStub: null,
);
@override
bool get showFavoriteWallets => (super.noSuchMethod(
Invocation.getter(#showFavoriteWallets),
returnValue: false,
) as bool);
@override
set showFavoriteWallets(bool? showFavoriteWallets) => super.noSuchMethod(
Invocation.setter(
#showFavoriteWallets,
showFavoriteWallets,
),
returnValueForMissingStub: null,
);
@override
String get language => (super.noSuchMethod(
Invocation.getter(#language),
returnValue: '',
) as String);
@override
set language(String? newLanguage) => super.noSuchMethod(
Invocation.setter(
#language,
newLanguage,
),
returnValueForMissingStub: null,
);
@override
String get currency => (super.noSuchMethod(
Invocation.getter(#currency),
returnValue: '',
) as String);
@override
set currency(String? newCurrency) => super.noSuchMethod(
Invocation.setter(
#currency,
newCurrency,
),
returnValueForMissingStub: null,
);
@override
2023-05-09 20:45:52 +00:00
bool get randomizePIN => (super.noSuchMethod(
Invocation.getter(#randomizePIN),
returnValue: false,
) as bool);
@override
set randomizePIN(bool? randomizePIN) => super.noSuchMethod(
Invocation.setter(
#randomizePIN,
randomizePIN,
),
returnValueForMissingStub: null,
);
@override
2022-10-20 14:38:42 +00:00
bool get useBiometrics => (super.noSuchMethod(
Invocation.getter(#useBiometrics),
returnValue: false,
) as bool);
@override
set useBiometrics(bool? useBiometrics) => super.noSuchMethod(
Invocation.setter(
#useBiometrics,
useBiometrics,
),
returnValueForMissingStub: null,
);
@override
bool get hasPin => (super.noSuchMethod(
Invocation.getter(#hasPin),
returnValue: false,
) as bool);
@override
set hasPin(bool? hasPin) => super.noSuchMethod(
Invocation.setter(
#hasPin,
hasPin,
),
returnValueForMissingStub: null,
);
@override
int get familiarity => (super.noSuchMethod(
Invocation.getter(#familiarity),
returnValue: 0,
) as int);
@override
set familiarity(int? familiarity) => super.noSuchMethod(
Invocation.setter(
#familiarity,
familiarity,
),
returnValueForMissingStub: null,
);
@override
2023-09-13 16:58:02 +00:00
bool get torKillSwitch => (super.noSuchMethod(
Invocation.getter(#torKillSwitch),
2023-09-08 16:04:56 +00:00
returnValue: false,
) as bool);
@override
2023-09-13 16:58:02 +00:00
set torKillSwitch(bool? torKillswitch) => super.noSuchMethod(
2023-09-08 16:04:56 +00:00
Invocation.setter(
2023-09-13 16:58:02 +00:00
#torKillSwitch,
2023-09-08 16:04:56 +00:00
torKillswitch,
),
returnValueForMissingStub: null,
);
@override
2022-10-20 14:38:42 +00:00
bool get showTestNetCoins => (super.noSuchMethod(
Invocation.getter(#showTestNetCoins),
returnValue: false,
) as bool);
@override
set showTestNetCoins(bool? showTestNetCoins) => super.noSuchMethod(
Invocation.setter(
#showTestNetCoins,
showTestNetCoins,
),
returnValueForMissingStub: null,
);
@override
bool get isAutoBackupEnabled => (super.noSuchMethod(
Invocation.getter(#isAutoBackupEnabled),
returnValue: false,
) as bool);
@override
set isAutoBackupEnabled(bool? isAutoBackupEnabled) => super.noSuchMethod(
Invocation.setter(
#isAutoBackupEnabled,
isAutoBackupEnabled,
),
returnValueForMissingStub: null,
);
@override
set autoBackupLocation(String? autoBackupLocation) => super.noSuchMethod(
Invocation.setter(
#autoBackupLocation,
autoBackupLocation,
),
returnValueForMissingStub: null,
);
@override
_i24.BackupFrequencyType get backupFrequencyType => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#backupFrequencyType),
returnValue: _i24.BackupFrequencyType.everyTenMinutes,
) as _i24.BackupFrequencyType);
2022-10-20 14:38:42 +00:00
@override
set backupFrequencyType(_i24.BackupFrequencyType? backupFrequencyType) =>
2022-10-20 14:38:42 +00:00
super.noSuchMethod(
Invocation.setter(
#backupFrequencyType,
backupFrequencyType,
),
returnValueForMissingStub: null,
);
@override
set lastAutoBackup(DateTime? lastAutoBackup) => super.noSuchMethod(
Invocation.setter(
#lastAutoBackup,
lastAutoBackup,
),
returnValueForMissingStub: null,
);
@override
bool get hideBlockExplorerWarning => (super.noSuchMethod(
Invocation.getter(#hideBlockExplorerWarning),
returnValue: false,
) as bool);
@override
set hideBlockExplorerWarning(bool? hideBlockExplorerWarning) =>
super.noSuchMethod(
Invocation.setter(
#hideBlockExplorerWarning,
hideBlockExplorerWarning,
),
returnValueForMissingStub: null,
);
@override
bool get gotoWalletOnStartup => (super.noSuchMethod(
Invocation.getter(#gotoWalletOnStartup),
returnValue: false,
) as bool);
@override
set gotoWalletOnStartup(bool? gotoWalletOnStartup) => super.noSuchMethod(
Invocation.setter(
#gotoWalletOnStartup,
gotoWalletOnStartup,
),
returnValueForMissingStub: null,
);
@override
set startupWalletId(String? startupWalletId) => super.noSuchMethod(
Invocation.setter(
#startupWalletId,
startupWalletId,
),
returnValueForMissingStub: null,
);
@override
bool get externalCalls => (super.noSuchMethod(
Invocation.getter(#externalCalls),
returnValue: false,
) as bool);
@override
set externalCalls(bool? externalCalls) => super.noSuchMethod(
Invocation.setter(
#externalCalls,
externalCalls,
),
returnValueForMissingStub: null,
);
@override
2023-03-08 22:17:32 +00:00
bool get enableCoinControl => (super.noSuchMethod(
Invocation.getter(#enableCoinControl),
returnValue: false,
) as bool);
@override
set enableCoinControl(bool? enableCoinControl) => super.noSuchMethod(
Invocation.setter(
#enableCoinControl,
enableCoinControl,
),
returnValueForMissingStub: null,
);
@override
bool get enableSystemBrightness => (super.noSuchMethod(
Invocation.getter(#enableSystemBrightness),
returnValue: false,
) as bool);
@override
set enableSystemBrightness(bool? enableSystemBrightness) =>
super.noSuchMethod(
Invocation.setter(
#enableSystemBrightness,
enableSystemBrightness,
),
returnValueForMissingStub: null,
);
@override
2023-05-09 20:45:52 +00:00
String get themeId => (super.noSuchMethod(
Invocation.getter(#themeId),
returnValue: '',
) as String);
@override
2023-05-09 20:45:52 +00:00
set themeId(String? themeId) => super.noSuchMethod(
Invocation.setter(
2023-05-09 20:45:52 +00:00
#themeId,
themeId,
),
returnValueForMissingStub: null,
);
@override
2023-05-09 20:45:52 +00:00
String get systemBrightnessLightThemeId => (super.noSuchMethod(
Invocation.getter(#systemBrightnessLightThemeId),
returnValue: '',
) as String);
@override
2023-05-09 20:45:52 +00:00
set systemBrightnessLightThemeId(String? systemBrightnessLightThemeId) =>
super.noSuchMethod(
Invocation.setter(
2023-05-09 20:45:52 +00:00
#systemBrightnessLightThemeId,
systemBrightnessLightThemeId,
),
returnValueForMissingStub: null,
);
@override
2023-05-09 20:45:52 +00:00
String get systemBrightnessDarkThemeId => (super.noSuchMethod(
Invocation.getter(#systemBrightnessDarkThemeId),
returnValue: '',
) as String);
@override
2023-05-09 20:45:52 +00:00
set systemBrightnessDarkThemeId(String? systemBrightnessDarkThemeId) =>
super.noSuchMethod(
Invocation.setter(
2023-05-09 20:45:52 +00:00
#systemBrightnessDarkThemeId,
systemBrightnessDarkThemeId,
),
returnValueForMissingStub: null,
);
@override
2023-09-08 16:04:56 +00:00
bool get useTor => (super.noSuchMethod(
Invocation.getter(#useTor),
returnValue: false,
) as bool);
@override
set useTor(bool? useTor) => super.noSuchMethod(
Invocation.setter(
#useTor,
useTor,
),
returnValueForMissingStub: null,
);
@override
_i8.FusionInfo get fusionServerInfo => (super.noSuchMethod(
2023-10-19 17:26:14 +00:00
Invocation.getter(#fusionServerInfo),
returnValue: _FakeFusionInfo_5(
2023-10-19 17:26:14 +00:00
this,
Invocation.getter(#fusionServerInfo),
),
) as _i8.FusionInfo);
2023-10-19 17:26:14 +00:00
@override
set fusionServerInfo(_i8.FusionInfo? fusionServerInfo) => super.noSuchMethod(
2023-10-19 17:26:14 +00:00
Invocation.setter(
#fusionServerInfo,
fusionServerInfo,
),
returnValueForMissingStub: null,
);
@override
2022-10-20 14:38:42 +00:00
bool get hasListeners => (super.noSuchMethod(
Invocation.getter(#hasListeners),
returnValue: false,
) as bool);
@override
_i14.Future<void> init() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#init,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> incrementCurrentNotificationIndex() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#incrementCurrentNotificationIndex,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<bool> isExternalCallsSet() => (super.noSuchMethod(
Invocation.method(
#isExternalCallsSet,
[],
),
returnValue: _i14.Future<bool>.value(false),
) as _i14.Future<bool>);
@override
_i14.Future<void> saveUserID(String? userId) => (super.noSuchMethod(
Invocation.method(
#saveUserID,
[userId],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
@override
_i14.Future<void> saveSignupEpoch(int? signupEpoch) => (super.noSuchMethod(
Invocation.method(
#saveSignupEpoch,
[signupEpoch],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
@override
_i25.AmountUnit amountUnit(_i13.Coin? coin) => (super.noSuchMethod(
2023-06-05 22:31:52 +00:00
Invocation.method(
#amountUnit,
[coin],
),
returnValue: _i25.AmountUnit.normal,
) as _i25.AmountUnit);
2023-06-05 22:31:52 +00:00
@override
void updateAmountUnit({
required _i13.Coin? coin,
required _i25.AmountUnit? amountUnit,
2023-06-05 22:31:52 +00:00
}) =>
super.noSuchMethod(
Invocation.method(
#updateAmountUnit,
[],
{
#coin: coin,
#amountUnit: amountUnit,
},
),
returnValueForMissingStub: null,
);
@override
int maxDecimals(_i13.Coin? coin) => (super.noSuchMethod(
2023-06-05 22:31:52 +00:00
Invocation.method(
#maxDecimals,
[coin],
),
returnValue: 0,
) as int);
@override
void updateMaxDecimals({
required _i13.Coin? coin,
2023-06-05 22:31:52 +00:00
required int? maxDecimals,
}) =>
super.noSuchMethod(
Invocation.method(
#updateMaxDecimals,
[],
{
#coin: coin,
#maxDecimals: maxDecimals,
},
),
returnValueForMissingStub: null,
);
@override
void addListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#addListener,
[listener],
),
returnValueForMissingStub: null,
);
@override
void removeListener(_i17.VoidCallback? listener) => super.noSuchMethod(
2022-10-20 14:38:42 +00:00
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 [CoinServiceAPI].
///
/// See the documentation for Mockito's code generation for more information.
class MockCoinServiceAPI extends _i1.Mock implements _i26.CoinServiceAPI {
2022-10-20 14:38:42 +00:00
@override
set onIsActiveWalletChanged(void Function(bool)? _onIsActiveWalletChanged) =>
super.noSuchMethod(
Invocation.setter(
#onIsActiveWalletChanged,
_onIsActiveWalletChanged,
),
returnValueForMissingStub: null,
);
@override
_i13.Coin get coin => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#coin),
returnValue: _i13.Coin.bitcoin,
) as _i13.Coin);
2022-10-20 14:38:42 +00:00
@override
bool get isRefreshing => (super.noSuchMethod(
Invocation.getter(#isRefreshing),
returnValue: false,
) as bool);
@override
bool get shouldAutoSync => (super.noSuchMethod(
Invocation.getter(#shouldAutoSync),
returnValue: false,
) as bool);
@override
set shouldAutoSync(bool? shouldAutoSync) => super.noSuchMethod(
Invocation.setter(
#shouldAutoSync,
shouldAutoSync,
),
returnValueForMissingStub: null,
);
@override
bool get isFavorite => (super.noSuchMethod(
Invocation.getter(#isFavorite),
returnValue: false,
) as bool);
@override
set isFavorite(bool? markFavorite) => super.noSuchMethod(
Invocation.setter(
#isFavorite,
markFavorite,
),
returnValueForMissingStub: null,
);
@override
_i14.Future<_i9.FeeObject> get fees => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#fees),
returnValue: _i14.Future<_i9.FeeObject>.value(_FakeFeeObject_6(
2022-10-20 14:38:42 +00:00
this,
Invocation.getter(#fees),
)),
) as _i14.Future<_i9.FeeObject>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<int> get maxFee => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#maxFee),
returnValue: _i14.Future<int>.value(0),
) as _i14.Future<int>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<String> get currentReceivingAddress => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#currentReceivingAddress),
returnValue: _i14.Future<String>.value(''),
) as _i14.Future<String>);
2022-10-20 14:38:42 +00:00
@override
_i10.Balance get balance => (super.noSuchMethod(
2023-01-12 03:17:12 +00:00
Invocation.getter(#balance),
returnValue: _FakeBalance_7(
2022-10-20 14:38:42 +00:00
this,
2023-01-12 03:17:12 +00:00
Invocation.getter(#balance),
),
) as _i10.Balance);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<List<_i27.Transaction>> get transactions => (super.noSuchMethod(
2023-01-12 03:17:12 +00:00
Invocation.getter(#transactions),
2022-10-20 14:38:42 +00:00
returnValue:
_i14.Future<List<_i27.Transaction>>.value(<_i27.Transaction>[]),
) as _i14.Future<List<_i27.Transaction>>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<List<_i27.UTXO>> get utxos => (super.noSuchMethod(
2023-01-12 03:17:12 +00:00
Invocation.getter(#utxos),
returnValue: _i14.Future<List<_i27.UTXO>>.value(<_i27.UTXO>[]),
) as _i14.Future<List<_i27.UTXO>>);
2022-10-20 14:38:42 +00:00
@override
set walletName(String? newName) => super.noSuchMethod(
Invocation.setter(
#walletName,
newName,
),
returnValueForMissingStub: null,
);
@override
String get walletName => (super.noSuchMethod(
Invocation.getter(#walletName),
returnValue: '',
) as String);
@override
String get walletId => (super.noSuchMethod(
Invocation.getter(#walletId),
returnValue: '',
) as String);
@override
_i14.Future<List<String>> get mnemonic => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.getter(#mnemonic),
returnValue: _i14.Future<List<String>>.value(<String>[]),
) as _i14.Future<List<String>>);
2023-02-07 17:24:04 +00:00
@override
_i14.Future<String?> get mnemonicString => (super.noSuchMethod(
2023-02-07 17:24:04 +00:00
Invocation.getter(#mnemonicString),
returnValue: _i14.Future<String?>.value(),
) as _i14.Future<String?>);
2023-02-07 17:24:04 +00:00
@override
_i14.Future<String?> get mnemonicPassphrase => (super.noSuchMethod(
2023-02-07 17:24:04 +00:00
Invocation.getter(#mnemonicPassphrase),
returnValue: _i14.Future<String?>.value(),
) as _i14.Future<String?>);
2022-10-20 14:38:42 +00:00
@override
bool get hasCalledExit => (super.noSuchMethod(
Invocation.getter(#hasCalledExit),
returnValue: false,
) as bool);
@override
bool get isConnected => (super.noSuchMethod(
Invocation.getter(#isConnected),
returnValue: false,
) as bool);
@override
2023-01-10 23:48:55 +00:00
int get storedChainHeight => (super.noSuchMethod(
Invocation.getter(#storedChainHeight),
returnValue: 0,
) as int);
@override
_i14.Future<Map<String, dynamic>> prepareSend({
2022-10-20 14:38:42 +00:00
required String? address,
required _i11.Amount? amount,
2022-10-20 14:38:42 +00:00
Map<String, dynamic>? args,
}) =>
(super.noSuchMethod(
Invocation.method(
#prepareSend,
[],
{
#address: address,
#amount: amount,
2022-10-20 14:38:42 +00:00
#args: args,
},
),
returnValue:
_i14.Future<Map<String, dynamic>>.value(<String, dynamic>{}),
) as _i14.Future<Map<String, dynamic>>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<String> confirmSend({required Map<String, dynamic>? txData}) =>
2022-10-20 14:38:42 +00:00
(super.noSuchMethod(
Invocation.method(
#confirmSend,
[],
{#txData: txData},
),
returnValue: _i14.Future<String>.value(''),
) as _i14.Future<String>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> refresh() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#refresh,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> updateNode(bool? shouldRefresh) => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#updateNode,
[shouldRefresh],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
bool validateAddress(String? address) => (super.noSuchMethod(
Invocation.method(
#validateAddress,
[address],
),
returnValue: false,
) as bool);
@override
_i14.Future<bool> testNetworkConnection() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#testNetworkConnection,
[],
),
returnValue: _i14.Future<bool>.value(false),
) as _i14.Future<bool>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> recoverFromMnemonic({
2022-10-20 14:38:42 +00:00
required String? mnemonic,
2023-02-07 17:24:04 +00:00
String? mnemonicPassphrase,
2022-10-20 14:38:42 +00:00
required int? maxUnusedAddressGap,
required int? maxNumberOfIndexesToCheck,
required int? height,
}) =>
(super.noSuchMethod(
Invocation.method(
#recoverFromMnemonic,
[],
{
#mnemonic: mnemonic,
2023-02-07 17:24:04 +00:00
#mnemonicPassphrase: mnemonicPassphrase,
2022-10-20 14:38:42 +00:00
#maxUnusedAddressGap: maxUnusedAddressGap,
#maxNumberOfIndexesToCheck: maxNumberOfIndexesToCheck,
#height: height,
},
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> initializeNew(
2023-08-22 23:24:22 +00:00
({String mnemonicPassphrase, int wordCount})? data) =>
(super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#initializeNew,
2023-08-22 23:24:22 +00:00
[data],
2022-10-20 14:38:42 +00:00
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> initializeExisting() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#initializeExisting,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> exit() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#exit,
[],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<void> fullRescan(
2022-10-20 14:38:42 +00:00
int? maxUnusedAddressGap,
int? maxNumberOfIndexesToCheck,
) =>
(super.noSuchMethod(
Invocation.method(
#fullRescan,
[
maxUnusedAddressGap,
maxNumberOfIndexesToCheck,
],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<_i11.Amount> estimateFeeFor(
_i11.Amount? amount,
2022-10-20 14:38:42 +00:00
int? feeRate,
) =>
(super.noSuchMethod(
Invocation.method(
#estimateFeeFor,
[
amount,
2022-10-20 14:38:42 +00:00
feeRate,
],
),
returnValue: _i14.Future<_i11.Amount>.value(_FakeAmount_8(
this,
Invocation.method(
#estimateFeeFor,
[
amount,
feeRate,
],
),
)),
) as _i14.Future<_i11.Amount>);
2022-10-20 14:38:42 +00:00
@override
_i14.Future<bool> generateNewAddress() => (super.noSuchMethod(
2022-10-20 14:38:42 +00:00
Invocation.method(
#generateNewAddress,
[],
),
returnValue: _i14.Future<bool>.value(false),
) as _i14.Future<bool>);
@override
_i14.Future<void> updateSentCachedTxData(Map<String, dynamic>? txData) =>
(super.noSuchMethod(
Invocation.method(
#updateSentCachedTxData,
[txData],
),
returnValue: _i14.Future<void>.value(),
returnValueForMissingStub: _i14.Future<void>.value(),
) as _i14.Future<void>);
2022-10-20 14:38:42 +00:00
}