widget_test.dart 629 B

1234567891011121314151617
  1. // This is a basic Flutter widget test.
  2. //
  3. // To perform an interaction with a widget in your test, use the WidgetTester
  4. // utility that Flutter provides. For example, you can send tap and scroll
  5. // gestures. You can also use WidgetTester to find child widgets in the widget
  6. // tree, read text, and verify that the values of widget properties are correct.
  7. import 'package:flutter_test/flutter_test.dart';
  8. import 'package:uitgaanskrant/main.dart';
  9. void main() {
  10. testWidgets('Counter increments smoke test', (WidgetTester tester) async {
  11. // Build our app and trigger a frame.
  12. await tester.pumpWidget(MyApp());
  13. });
  14. }