stack_wallet/test/widget_tests/icon_widgets/addressbook_icon_test.dart

38 lines
1.1 KiB
Dart
Raw Normal View History

2022-10-24 15:16:08 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'package:flutter_test/flutter_test.dart';
2023-05-08 17:59:00 +00:00
import 'package:stackwallet/models/isar/sw_theme.dart';
import 'package:stackwallet/themes/defaults/dark.dart';
2022-10-24 15:16:08 +00:00
import 'package:stackwallet/utilities/theme/stack_colors.dart';
import 'package:stackwallet/widgets/icon_widgets/addressbook_icon.dart';
void main() {
testWidgets("test address book icon widget", (widgetTester) async {
final key = UniqueKey();
final addressBookIcon = AddressBookIcon(
key: key,
);
await widgetTester.pumpWidget(
MaterialApp(
theme: ThemeData(
extensions: [
2023-05-08 17:59:00 +00:00
StackColors.fromStackColorTheme(
StackTheme.fromJson(
json: darkJson,
applicationThemesDirectoryPath: "",
),
),
2022-10-24 15:16:08 +00:00
],
),
home: Material(
child: addressBookIcon,
),
),
);
expect(find.byWidget(addressBookIcon), findsOneWidget);
expect(find.byType(SvgPicture), findsOneWidget);
});
}