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-12 20:02:04 +00:00
|
|
|
import 'package:stackwallet/models/isar/stack_theme.dart';
|
2023-05-09 21:57:40 +00:00
|
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
2022-10-24 15:16:08 +00:00
|
|
|
import 'package:stackwallet/widgets/icon_widgets/addressbook_icon.dart';
|
|
|
|
|
2023-05-12 20:02:04 +00:00
|
|
|
import '../../sample_data/theme_json.dart';
|
|
|
|
|
2022-10-24 15:16:08 +00:00
|
|
|
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(
|
2023-05-12 20:02:04 +00:00
|
|
|
json: lightThemeJsonMap,
|
|
|
|
applicationThemesDirectoryPath: "test",
|
2023-05-08 17:59:00 +00:00
|
|
|
),
|
|
|
|
),
|
2022-10-24 15:16:08 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
home: Material(
|
|
|
|
child: addressBookIcon,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(find.byWidget(addressBookIcon), findsOneWidget);
|
|
|
|
expect(find.byType(SvgPicture), findsOneWidget);
|
|
|
|
});
|
|
|
|
}
|