diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-02 15:26:52 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-02 15:26:52 +0530 |
| commit | f35758beb2719c64e513f684b366c3d0db1c0ec0 (patch) | |
| tree | 8c3ea4eae817d3507bb4b94f0b75e036813f9c67 /test/widget_test.dart | |
| download | daft-launcher-f35758beb2719c64e513f684b366c3d0db1c0ec0.tar.gz daft-launcher-f35758beb2719c64e513f684b366c3d0db1c0ec0.zip | |
Init commit with the boilerplate shit
Diffstat (limited to 'test/widget_test.dart')
| -rw-r--r-- | test/widget_test.dart | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..266b80d --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility that Flutter provides. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:owyn/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} |
