pdf_signature/test/features/step/the_theme_is_set_to.dart

11 lines
312 B
Dart

import 'package:flutter_test/flutter_test.dart';
import '_world.dart';
/// Usage: the theme is set to {"system"}
Future<void> theThemeIsSetTo(WidgetTester tester, String param1) async {
expect(TestWorld.prefs['theme'], param1);
if (param1 == 'system') {
expect(TestWorld.selectedTheme, 'system');
}
}