stack_wallet/test/widget_tests/textfield_icon_button_test.dart

33 lines
944 B
Dart
Raw Normal View History

2022-10-18 17:31:37 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
2023-05-12 20:02:04 +00:00
import 'package:stackwallet/models/isar/stack_theme.dart';
import 'package:stackwallet/themes/stack_colors.dart';
2022-10-18 17:31:37 +00:00
import 'package:stackwallet/widgets/icon_widgets/x_icon.dart';
import 'package:stackwallet/widgets/textfield_icon_button.dart';
2023-05-12 20:02:04 +00:00
import '../sample_data/theme_json.dart';
2022-10-18 17:31:37 +00:00
void main() {
testWidgets("test", (widgetTester) async {
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,
2023-05-08 17:59:00 +00:00
),
),
2022-10-18 17:31:37 +00:00
],
),
home: const Material(
child: TextFieldIconButton(child: XIcon()),
),
),
);
expect(find.byType(TextFieldIconButton), findsOneWidget);
expect(find.byType(XIcon), findsOneWidget);
});
}