mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
590 lines
20 KiB
Dart
590 lines
20 KiB
Dart
import 'package:mockito/annotations.dart';
|
|
import 'package:stackwallet/db/isar/main_db.dart';
|
|
import 'package:stackwallet/models/isar/stack_theme.dart';
|
|
import 'package:stackwallet/services/coins/coin_service.dart';
|
|
import 'package:stackwallet/services/coins/firo/firo_wallet.dart';
|
|
import 'package:stackwallet/services/locale_service.dart';
|
|
import 'package:stackwallet/services/notes_service.dart';
|
|
import 'package:stackwallet/services/price_service.dart';
|
|
import 'package:stackwallet/services/wallets.dart';
|
|
import 'package:stackwallet/themes/theme_service.dart';
|
|
import 'package:stackwallet/utilities/prefs.dart';
|
|
|
|
@GenerateMocks([
|
|
Wallets,
|
|
CoinServiceAPI,
|
|
FiroWallet,
|
|
LocaleService,
|
|
Prefs,
|
|
PriceService,
|
|
NotesService,
|
|
ThemeService,
|
|
MainDB,
|
|
IThemeAssets,
|
|
], customMocks: [])
|
|
void main() {
|
|
// TestWidgetsFlutterBinding.ensureInitialized();
|
|
// testWidgets("Sent confirmed tx displays correctly", (tester) async {
|
|
// final mockManager = MockManager();
|
|
// final mockLocaleService = MockLocaleService();
|
|
// final wallets = MockWallets();
|
|
// final mockPrefs = MockPrefs();
|
|
// final mockPriceService = MockPriceService();
|
|
// final mockThemeService = MockThemeService();
|
|
// final mockDB = MockMainDB();
|
|
// final mockIThemeAssets = MockIThemeAssets();
|
|
//
|
|
// when(mockIThemeAssets.send).thenAnswer(
|
|
// (_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg",
|
|
// );
|
|
//
|
|
// final tx = Transaction(
|
|
// txid: "some txid",
|
|
// timestamp: 1648595998,
|
|
// type: TransactionType.outgoing,
|
|
// amount: 100000000,
|
|
// amountString: Amount(
|
|
// rawValue: BigInt.from(100000000),
|
|
// fractionDigits: Coin.firo.decimals,
|
|
// ).toJsonString(),
|
|
// fee: 3794,
|
|
// height: 450123,
|
|
// subType: TransactionSubType.none,
|
|
// isCancelled: false,
|
|
// walletId: '',
|
|
// isLelantus: null,
|
|
// slateId: '',
|
|
// otherData: '',
|
|
// nonce: null,
|
|
// inputs: [],
|
|
// outputs: [],
|
|
// numberOfMessages: null,
|
|
// )..address.value = Address(
|
|
// walletId: "walletId",
|
|
// value: "",
|
|
// publicKey: [],
|
|
// derivationIndex: 0,
|
|
// derivationPath: null,
|
|
// type: AddressType.p2pkh,
|
|
// subType: AddressSubType.receiving);
|
|
//
|
|
// final CoinServiceAPI wallet = MockFiroWallet();
|
|
//
|
|
// when(mockThemeService.getTheme(themeId: "light")).thenAnswer(
|
|
// (_) => StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// );
|
|
// when(wallet.coin.ticker).thenAnswer((_) => "FIRO");
|
|
// when(mockLocaleService.locale).thenAnswer((_) => "en_US");
|
|
// when(mockPrefs.currency).thenAnswer((_) => "USD");
|
|
// when(mockPrefs.externalCalls).thenAnswer((_) => true);
|
|
// when(mockPriceService.getPrice(Coin.firo))
|
|
// .thenAnswer((realInvocation) => Tuple2(Decimal.ten, 0.00));
|
|
//
|
|
// when(wallet.coin).thenAnswer((_) => Coin.firo);
|
|
//
|
|
// when(wallets.getWallet"wallet-id"))
|
|
// .thenAnswer((realInvocation) => Manager(wallet));
|
|
//
|
|
// when(wallet.storedChainHeight).thenAnswer((_) => 6000000);
|
|
//
|
|
// when(mockPrefs.amountUnit(Coin.firo)).thenAnswer(
|
|
// (_) => AmountUnit.normal,
|
|
// );
|
|
// when(mockPrefs.maxDecimals(Coin.firo)).thenAnswer(
|
|
// (_) => 8,
|
|
// );
|
|
//
|
|
// when(mockDB.getEthContractSync("")).thenAnswer(
|
|
// (_) => null,
|
|
// );
|
|
// //
|
|
// await tester.pumpWidget(
|
|
// ProviderScope(
|
|
// overrides: [
|
|
// pWallets.overrideWithValue(wallets),
|
|
// localeServiceChangeNotifierProvider
|
|
// .overrideWithValue(mockLocaleService),
|
|
// pThemeService.overrideWithValue(mockThemeService),
|
|
// prefsChangeNotifierProvider.overrideWithValue(mockPrefs),
|
|
// priceAnd24hChangeNotifierProvider.overrideWithValue(mockPriceService),
|
|
// mainDBProvider.overrideWithValue(mockDB),
|
|
// coinIconProvider.overrideWithProvider(
|
|
// (argument) => Provider<String>((_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg"),
|
|
// ),
|
|
// themeAssetsProvider.overrideWithProvider(
|
|
// StateProvider(
|
|
// (ref) => mockIThemeAssets,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// child: MaterialApp(
|
|
// theme: ThemeData(
|
|
// extensions: [
|
|
// StackColors.fromStackColorTheme(
|
|
// StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// ),
|
|
// home: TransactionCard(transaction: tx, walletId: "wallet-id"),
|
|
// ),
|
|
// ),
|
|
// );
|
|
//
|
|
// //
|
|
// final title = find.text("Sent");
|
|
// // final price1 = find.text("0.00 USD");
|
|
// final amount = Util.isDesktop
|
|
// ? find.text("-1.00000000 FIRO")
|
|
// : find.text("1.00000000 FIRO");
|
|
//
|
|
// final icon = find.byIcon(FeatherIcons.arrowUp);
|
|
//
|
|
// expect(title, findsOneWidget);
|
|
// // expect(price1, findsOneWidget);
|
|
// expect(amount, findsOneWidget);
|
|
// // expect(icon, findsOneWidget);
|
|
// //
|
|
// await tester.pumpAndSettle(const Duration(seconds: 2));
|
|
// //
|
|
// // final price2 = find.text("\$10.00");
|
|
// // expect(price2, findsOneWidget);
|
|
// //
|
|
// // verify(mockManager.addListener(any)).called(1);
|
|
// verify(mockLocaleService.addListener(any)).called(1);
|
|
//
|
|
// verify(mockPrefs.currency).called(1);
|
|
// verify(mockPriceService.getPrice(Coin.firo)).called(1);
|
|
// verify(wallet.coin.ticker).called(1);
|
|
//
|
|
// verify(mockLocaleService.locale).called(2);
|
|
//
|
|
// verifyNoMoreInteractions(mockManager);
|
|
// verifyNoMoreInteractions(mockLocaleService);
|
|
// });
|
|
//
|
|
// testWidgets("Anonymized confirmed tx displays correctly", (tester) async {
|
|
// final mockManager = MockManager();
|
|
// final mockLocaleService = MockLocaleService();
|
|
// final wallets = MockWallets();
|
|
// final mockPrefs = MockPrefs();
|
|
// final mockPriceService = MockPriceService();
|
|
// final mockThemeService = MockThemeService();
|
|
// final mockDB = MockMainDB();
|
|
// final mockIThemeAssets = MockIThemeAssets();
|
|
//
|
|
// when(mockIThemeAssets.txExchangeFailed).thenAnswer(
|
|
// (_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg",
|
|
// );
|
|
//
|
|
// final tx = Transaction(
|
|
// txid: "some txid",
|
|
// timestamp: 1648595998,
|
|
// type: TransactionType.outgoing,
|
|
// amount: 9659,
|
|
// amountString: Amount(
|
|
// rawValue: BigInt.from(9659),
|
|
// fractionDigits: Coin.firo.decimals,
|
|
// ).toJsonString(),
|
|
// fee: 3794,
|
|
// height: 450123,
|
|
// subType: TransactionSubType.mint,
|
|
// isCancelled: false,
|
|
// walletId: '',
|
|
// isLelantus: null,
|
|
// slateId: '',
|
|
// otherData: '',
|
|
// nonce: null,
|
|
// inputs: [],
|
|
// outputs: [],
|
|
// numberOfMessages: null,
|
|
// )..address.value = Address(
|
|
// walletId: "walletId",
|
|
// value: "",
|
|
// publicKey: [],
|
|
// derivationIndex: 0,
|
|
// derivationPath: null,
|
|
// type: AddressType.p2pkh,
|
|
// subType: AddressSubType.receiving);
|
|
//
|
|
// final CoinServiceAPI wallet = MockFiroWallet();
|
|
//
|
|
// when(mockThemeService.getTheme(themeId: "light")).thenAnswer(
|
|
// (_) => StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// );
|
|
// when(wallet.coin.ticker).thenAnswer((_) => "FIRO");
|
|
// when(mockLocaleService.locale).thenAnswer((_) => "en_US");
|
|
// when(mockPrefs.currency).thenAnswer((_) => "USD");
|
|
// when(mockPrefs.externalCalls).thenAnswer((_) => true);
|
|
// when(mockPriceService.getPrice(Coin.firo))
|
|
// .thenAnswer((realInvocation) => Tuple2(Decimal.ten, 0.00));
|
|
//
|
|
// when(wallet.coin).thenAnswer((_) => Coin.firo);
|
|
// when(wallet.storedChainHeight).thenAnswer((_) => 6000000);
|
|
//
|
|
// when(mockPrefs.amountUnit(Coin.firo)).thenAnswer(
|
|
// (_) => AmountUnit.normal,
|
|
// );
|
|
// when(mockPrefs.maxDecimals(Coin.firo)).thenAnswer(
|
|
// (_) => 8,
|
|
// );
|
|
//
|
|
// when(mockDB.getEthContractSync("")).thenAnswer(
|
|
// (_) => null,
|
|
// );
|
|
//
|
|
// when(wallets.getWallet"wallet-id"))
|
|
// .thenAnswer((realInvocation) => Manager(wallet));
|
|
// //
|
|
// await tester.pumpWidget(
|
|
// ProviderScope(
|
|
// overrides: [
|
|
// pWallets.overrideWithValue(wallets),
|
|
// localeServiceChangeNotifierProvider
|
|
// .overrideWithValue(mockLocaleService),
|
|
// prefsChangeNotifierProvider.overrideWithValue(mockPrefs),
|
|
// pThemeService.overrideWithValue(mockThemeService),
|
|
// mainDBProvider.overrideWithValue(mockDB),
|
|
// priceAnd24hChangeNotifierProvider.overrideWithValue(mockPriceService),
|
|
// coinIconProvider.overrideWithProvider(
|
|
// (argument) => Provider<String>((_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg"),
|
|
// ),
|
|
// themeAssetsProvider.overrideWithProvider(
|
|
// StateProvider(
|
|
// (ref) => mockIThemeAssets,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// child: MaterialApp(
|
|
// theme: ThemeData(
|
|
// extensions: [
|
|
// StackColors.fromStackColorTheme(
|
|
// StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// ),
|
|
// home: TransactionCard(transaction: tx, walletId: "wallet-id"),
|
|
// ),
|
|
// ),
|
|
// );
|
|
//
|
|
// //
|
|
// final title = find.text("Anonymized");
|
|
// // final price1 = find.text("0.00 USD");
|
|
// final amount = find.text("-0.00009659 FIRO");
|
|
//
|
|
// final icon = find.byIcon(FeatherIcons.arrowUp);
|
|
//
|
|
// expect(title, findsOneWidget);
|
|
// // expect(price1, findsOneWidget);
|
|
// expect(amount, findsOneWidget);
|
|
// // expect(icon, findsOneWidget);
|
|
// //
|
|
// await tester.pumpAndSettle(const Duration(seconds: 2));
|
|
// //
|
|
// // final price2 = find.text("\$10.00");
|
|
// // expect(price2, findsOneWidget);
|
|
// //
|
|
// // verify(mockManager.addListener(any)).called(1);
|
|
// verify(mockLocaleService.addListener(any)).called(1);
|
|
//
|
|
// verify(mockPrefs.currency).called(1);
|
|
// verify(mockPriceService.getPrice(Coin.firo)).called(1);
|
|
// verify(wallet.coin.ticker).called(1);
|
|
//
|
|
// verify(mockLocaleService.locale).called(2);
|
|
//
|
|
// verifyNoMoreInteractions(mockManager);
|
|
// verifyNoMoreInteractions(mockLocaleService);
|
|
// });
|
|
//
|
|
// testWidgets("Received unconfirmed tx displays correctly", (tester) async {
|
|
// final mockManager = MockManager();
|
|
// final mockLocaleService = MockLocaleService();
|
|
// final wallets = MockWallets();
|
|
// final mockPrefs = MockPrefs();
|
|
// final mockPriceService = MockPriceService();
|
|
// final mockThemeService = MockThemeService();
|
|
// final mockDB = MockMainDB();
|
|
// final mockIThemeAssets = MockIThemeAssets();
|
|
//
|
|
// when(mockIThemeAssets.receive).thenAnswer(
|
|
// (_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg",
|
|
// );
|
|
//
|
|
// final tx = Transaction(
|
|
// txid: "some txid",
|
|
// timestamp: 1648595998,
|
|
// type: TransactionType.incoming,
|
|
// amount: 100000000,
|
|
// amountString: Amount(
|
|
// rawValue: BigInt.from(100000000),
|
|
// fractionDigits: Coin.firo.decimals,
|
|
// ).toJsonString(),
|
|
// fee: 3794,
|
|
// height: 450123,
|
|
// subType: TransactionSubType.none,
|
|
// isCancelled: false,
|
|
// walletId: '',
|
|
// isLelantus: null,
|
|
// slateId: '',
|
|
// otherData: '',
|
|
// nonce: null,
|
|
// inputs: [],
|
|
// outputs: [],
|
|
// numberOfMessages: null,
|
|
// )..address.value = Address(
|
|
// walletId: "walletId",
|
|
// value: "",
|
|
// publicKey: [],
|
|
// derivationIndex: 0,
|
|
// derivationPath: null,
|
|
// type: AddressType.p2pkh,
|
|
// subType: AddressSubType.receiving);
|
|
//
|
|
// final CoinServiceAPI wallet = MockFiroWallet();
|
|
//
|
|
// when(mockThemeService.getTheme(themeId: "light")).thenAnswer(
|
|
// (_) => StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// );
|
|
// when(wallet.coin.ticker).thenAnswer((_) => "FIRO");
|
|
// when(mockLocaleService.locale).thenAnswer((_) => "en_US");
|
|
// when(mockPrefs.currency).thenAnswer((_) => "USD");
|
|
// when(mockPrefs.externalCalls).thenAnswer((_) => true);
|
|
// when(mockPriceService.getPrice(Coin.firo))
|
|
// .thenAnswer((realInvocation) => Tuple2(Decimal.ten, 0.00));
|
|
//
|
|
// when(wallet.coin).thenAnswer((_) => Coin.firo);
|
|
//
|
|
// when(wallets.getWallet"wallet-id"))
|
|
// .thenAnswer((realInvocation) => Manager(wallet));
|
|
//
|
|
// when(wallet.storedChainHeight).thenAnswer((_) => 6000000);
|
|
//
|
|
// when(mockPrefs.amountUnit(Coin.firo)).thenAnswer(
|
|
// (_) => AmountUnit.normal,
|
|
// );
|
|
// when(mockPrefs.maxDecimals(Coin.firo)).thenAnswer(
|
|
// (_) => 8,
|
|
// );
|
|
//
|
|
// when(mockDB.getEthContractSync("")).thenAnswer(
|
|
// (_) => null,
|
|
// );
|
|
//
|
|
// await tester.pumpWidget(
|
|
// ProviderScope(
|
|
// overrides: [
|
|
// pWallets.overrideWithValue(wallets),
|
|
// localeServiceChangeNotifierProvider
|
|
// .overrideWithValue(mockLocaleService),
|
|
// prefsChangeNotifierProvider.overrideWithValue(mockPrefs),
|
|
// pThemeService.overrideWithValue(mockThemeService),
|
|
// mainDBProvider.overrideWithValue(mockDB),
|
|
// priceAnd24hChangeNotifierProvider.overrideWithValue(mockPriceService),
|
|
// coinIconProvider.overrideWithProvider(
|
|
// (argument) => Provider<String>((_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg"),
|
|
// ),
|
|
// themeAssetsProvider.overrideWithProvider(
|
|
// StateProvider(
|
|
// (ref) => mockIThemeAssets,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// child: MaterialApp(
|
|
// theme: ThemeData(
|
|
// extensions: [
|
|
// StackColors.fromStackColorTheme(
|
|
// StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// ),
|
|
// home: TransactionCard(transaction: tx, walletId: "wallet-id"),
|
|
// ),
|
|
// ),
|
|
// );
|
|
//
|
|
// final title = find.text("Received");
|
|
// final amount = Util.isDesktop
|
|
// ? find.text("+1.00000000 FIRO")
|
|
// : find.text("1.00000000 FIRO");
|
|
//
|
|
// expect(title, findsOneWidget);
|
|
// expect(amount, findsOneWidget);
|
|
//
|
|
// await tester.pumpAndSettle(const Duration(seconds: 2));
|
|
//
|
|
// verify(mockLocaleService.addListener(any)).called(1);
|
|
//
|
|
// verify(mockPrefs.currency).called(1);
|
|
// verify(mockPriceService.getPrice(Coin.firo)).called(1);
|
|
// verify(wallet.coin.ticker).called(1);
|
|
//
|
|
// verify(mockLocaleService.locale).called(2);
|
|
//
|
|
// verifyNoMoreInteractions(mockManager);
|
|
// verifyNoMoreInteractions(mockLocaleService);
|
|
// });
|
|
//
|
|
// testWidgets("Tap gesture", (tester) async {
|
|
// final mockManager = MockManager();
|
|
// final mockLocaleService = MockLocaleService();
|
|
// final wallets = MockWallets();
|
|
// final mockPrefs = MockPrefs();
|
|
// final mockPriceService = MockPriceService();
|
|
// final mockThemeService = MockThemeService();
|
|
// final mockDB = MockMainDB();
|
|
// final navigator = mockingjay.MockNavigator();
|
|
// final mockIThemeAssets = MockIThemeAssets();
|
|
//
|
|
// when(mockIThemeAssets.send).thenAnswer(
|
|
// (_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg",
|
|
// );
|
|
//
|
|
// final tx = Transaction(
|
|
// txid: "some txid",
|
|
// timestamp: 1648595998,
|
|
// type: TransactionType.outgoing,
|
|
// amount: 100000000,
|
|
// amountString: Amount(
|
|
// rawValue: BigInt.from(100000000),
|
|
// fractionDigits: Coin.firo.decimals,
|
|
// ).toJsonString(),
|
|
// fee: 3794,
|
|
// height: 450123,
|
|
// subType: TransactionSubType.none,
|
|
// isCancelled: false,
|
|
// walletId: '',
|
|
// isLelantus: null,
|
|
// slateId: '',
|
|
// otherData: '',
|
|
// nonce: null,
|
|
// inputs: [],
|
|
// outputs: [],
|
|
// numberOfMessages: null,
|
|
// )..address.value = Address(
|
|
// walletId: "walletId",
|
|
// value: "",
|
|
// publicKey: [],
|
|
// derivationIndex: 0,
|
|
// derivationPath: null,
|
|
// type: AddressType.p2pkh,
|
|
// subType: AddressSubType.receiving);
|
|
//
|
|
// final CoinServiceAPI wallet = MockFiroWallet();
|
|
//
|
|
// when(mockThemeService.getTheme(themeId: "light")).thenAnswer(
|
|
// (_) => StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// );
|
|
// when(wallet.coin.ticker).thenAnswer((_) => "FIRO");
|
|
// when(mockLocaleService.locale).thenAnswer((_) => "en_US");
|
|
// when(mockPrefs.currency).thenAnswer((_) => "USD");
|
|
// when(mockPrefs.externalCalls).thenAnswer((_) => true);
|
|
// when(mockPriceService.getPrice(Coin.firo))
|
|
// .thenAnswer((realInvocation) => Tuple2(Decimal.ten, 0.00));
|
|
//
|
|
// when(wallet.coin).thenAnswer((_) => Coin.firo);
|
|
//
|
|
// when(wallets.getWallet"wallet id"))
|
|
// .thenAnswer((realInvocation) => Manager(wallet));
|
|
//
|
|
// when(wallet.storedChainHeight).thenAnswer((_) => 6000000);
|
|
//
|
|
// mockingjay
|
|
// .when(() => navigator.pushNamed("/transactionDetails",
|
|
// arguments: Tuple3(tx, Coin.firo, "wallet id")))
|
|
// .thenAnswer((_) async => {});
|
|
//
|
|
// when(mockPrefs.amountUnit(Coin.firo)).thenAnswer(
|
|
// (_) => AmountUnit.normal,
|
|
// );
|
|
// when(mockPrefs.maxDecimals(Coin.firo)).thenAnswer(
|
|
// (_) => 8,
|
|
// );
|
|
//
|
|
// when(mockDB.getEthContractSync("")).thenAnswer(
|
|
// (_) => null,
|
|
// );
|
|
//
|
|
// await tester.pumpWidget(
|
|
// ProviderScope(
|
|
// overrides: [
|
|
// pWallets.overrideWithValue(wallets),
|
|
// localeServiceChangeNotifierProvider
|
|
// .overrideWithValue(mockLocaleService),
|
|
// prefsChangeNotifierProvider.overrideWithValue(mockPrefs),
|
|
// pThemeService.overrideWithValue(mockThemeService),
|
|
// mainDBProvider.overrideWithValue(mockDB),
|
|
// priceAnd24hChangeNotifierProvider.overrideWithValue(mockPriceService),
|
|
// coinIconProvider.overrideWithProvider(
|
|
// (argument) => Provider<String>((_) =>
|
|
// "${Directory.current.path}/test/sample_data/light/assets/dummy.svg"),
|
|
// ),
|
|
// themeAssetsProvider.overrideWithProvider(
|
|
// StateProvider(
|
|
// (ref) => mockIThemeAssets,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// child: MaterialApp(
|
|
// theme: ThemeData(
|
|
// extensions: [
|
|
// StackColors.fromStackColorTheme(
|
|
// StackTheme.fromJson(
|
|
// json: lightThemeJsonMap,
|
|
// ),
|
|
// ),
|
|
// ],
|
|
// ),
|
|
// home: mockingjay.MockNavigatorProvider(
|
|
// navigator: navigator,
|
|
// child: TransactionCard(transaction: tx, walletId: "wallet id")),
|
|
// ),
|
|
// ),
|
|
// );
|
|
//
|
|
// expect(find.byType(GestureDetector), findsOneWidget);
|
|
//
|
|
// await tester.tap(find.byType(GestureDetector));
|
|
// await tester.pump();
|
|
//
|
|
// verify(mockLocaleService.addListener(any)).called(1);
|
|
//
|
|
// verify(mockPrefs.currency).called(2);
|
|
// verify(mockLocaleService.locale).called(3);
|
|
// verify(wallet.coin.ticker).called(1);
|
|
// verify(wallet.storedChainHeight).called(2);
|
|
//
|
|
// verifyNoMoreInteractions(wallet);
|
|
// verifyNoMoreInteractions(mockLocaleService);
|
|
//
|
|
// if (Util.isDesktop) {
|
|
// expect(find.byType(TransactionDetailsView), findsOneWidget);
|
|
// } else {
|
|
// mockingjay
|
|
// .verify(() => navigator.pushNamed("/transactionDetails",
|
|
// arguments: Tuple3(tx, Coin.firo, "wallet id")))
|
|
// .called(1);
|
|
// }
|
|
// });
|
|
}
|