2022-10-19 13:18:05 +00:00
|
|
|
import 'package:flutter/material.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-19 13:18:05 +00:00
|
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
|
|
|
import 'package:stackwallet/widgets/desktop/custom_text_button.dart';
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
testWidgets("Test text button ", (widgetTester) async {
|
|
|
|
final key = UniqueKey();
|
|
|
|
|
|
|
|
await widgetTester.pumpWidget(
|
|
|
|
MaterialApp(
|
|
|
|
theme: ThemeData(
|
|
|
|
extensions: [
|
2023-05-08 17:59:00 +00:00
|
|
|
StackColors.fromStackColorTheme(
|
|
|
|
StackTheme.fromJson(
|
|
|
|
json: darkJson,
|
|
|
|
applicationThemesDirectoryPath: "",
|
|
|
|
),
|
|
|
|
),
|
2022-10-19 13:18:05 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
home: Material(
|
|
|
|
child: CustomTextButtonBase(
|
|
|
|
key: key,
|
|
|
|
width: 200,
|
|
|
|
height: 300,
|
|
|
|
textButton:
|
|
|
|
const TextButton(onPressed: null, child: Text("Some Text")),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(find.byType(CustomTextButtonBase), findsOneWidget);
|
|
|
|
});
|
|
|
|
}
|