mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
55 lines
1.7 KiB
Dart
55 lines
1.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:stackwallet/models/exchange/response_objects/trade.dart';
|
|
import 'package:stackwallet/utilities/theme/light_colors.dart';
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
|
import 'package:stackwallet/widgets/trade_card.dart';
|
|
|
|
void main() {
|
|
testWidgets("Test Trade card builds", (widgetTester) async {
|
|
final trade = Trade(
|
|
uuid: "uuid",
|
|
tradeId: "trade id",
|
|
rateType: "Estimate rate",
|
|
direction: "",
|
|
timestamp: DateTime.parse("1662544771"),
|
|
updatedAt: DateTime.parse("1662544771"),
|
|
payInCurrency: "BTC",
|
|
payInAmount: "10",
|
|
payInAddress: "btc address",
|
|
payInNetwork: "",
|
|
payInExtraId: "",
|
|
payInTxid: "",
|
|
payOutCurrency: "xmr",
|
|
payOutAmount: "10",
|
|
payOutAddress: "xmr address",
|
|
payOutNetwork: "",
|
|
payOutExtraId: "",
|
|
payOutTxid: "",
|
|
refundAddress: "refund address",
|
|
refundExtraId: "",
|
|
status: "Failed",
|
|
exchangeName: "Some Exchange");
|
|
|
|
await widgetTester.pumpWidget(
|
|
ProviderScope(
|
|
overrides: [],
|
|
child: MaterialApp(
|
|
theme: ThemeData(
|
|
extensions: [
|
|
StackColors.fromStackColorTheme(
|
|
LightColors(),
|
|
),
|
|
],
|
|
),
|
|
home: TradeCard(trade: trade, onTap: () {}),
|
|
),
|
|
),
|
|
);
|
|
|
|
expect(find.byType(TradeCard), findsOneWidget);
|
|
expect(find.text("BTC → XMR"), findsOneWidget);
|
|
expect(find.text("Some Exchange"), findsOneWidget);
|
|
});
|
|
}
|