widget_test.dart 1.1 KB

12345678910111213141516171819202122232425262728293031
  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 in the flutter_test package. 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/material.dart';
  8. import 'package:flutter_test/flutter_test.dart';
  9. import 'package:namer_app/main.dart';
  10. import 'package:telneo_lat/main.dart';
  11. void main() {
  12. testWidgets('Counter increments smoke test', (WidgetTester tester) async {
  13. // Build our app and trigger a frame.
  14. await tester.pumpWidget(const MyApp());
  15. // Verify that our counter starts at 0.
  16. expect(find.text('0'), findsOneWidget);
  17. expect(find.text('1'), findsNothing);
  18. // Tap the '+' icon and trigger a frame.
  19. await tester.tap(find.byIcon(Icons.add));
  20. await tester.pump();
  21. // Verify that our counter has incremented.
  22. expect(find.text('0'), findsNothing);
  23. expect(find.text('1'), findsOneWidget);
  24. });
  25. }