mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
27 lines
823 B
Dart
27 lines
823 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
import 'package:stackwallet/utilities/theme/light_colors.dart';
|
||
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||
|
import 'package:stackwallet/widgets/icon_widgets/x_icon.dart';
|
||
|
import 'package:stackwallet/widgets/textfield_icon_button.dart';
|
||
|
|
||
|
void main() {
|
||
|
testWidgets("test", (widgetTester) async {
|
||
|
await widgetTester.pumpWidget(
|
||
|
MaterialApp(
|
||
|
theme: ThemeData(
|
||
|
extensions: [
|
||
|
StackColors.fromStackColorTheme(LightColors()),
|
||
|
],
|
||
|
),
|
||
|
home: const Material(
|
||
|
child: TextFieldIconButton(child: XIcon()),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
expect(find.byType(TextFieldIconButton), findsOneWidget);
|
||
|
expect(find.byType(XIcon), findsOneWidget);
|
||
|
});
|
||
|
}
|