From 4d70ea53a2747edd761afe126854c36811adfff6 Mon Sep 17 00:00:00 2001 From: harishanbalagan Date: Sat, 12 Mar 2022 09:57:26 +0530 Subject: [PATCH] removed redundant test files in in example app --- .fvm/flutter_sdk | 1 + .fvm/fvm_config.json | 4 ++++ example/test/widget_test.dart | 30 ------------------------------ 3 files changed, 5 insertions(+), 30 deletions(-) create mode 120000 .fvm/flutter_sdk create mode 100644 .fvm/fvm_config.json delete mode 100644 example/test/widget_test.dart diff --git a/.fvm/flutter_sdk b/.fvm/flutter_sdk new file mode 120000 index 0000000..0b29ec5 --- /dev/null +++ b/.fvm/flutter_sdk @@ -0,0 +1 @@ +C:/Users/haris/fvm/versions/stable \ No newline at end of file diff --git a/.fvm/fvm_config.json b/.fvm/fvm_config.json new file mode 100644 index 0000000..b3db758 --- /dev/null +++ b/.fvm/fvm_config.json @@ -0,0 +1,4 @@ +{ + "flutterSdkVersion": "stable", + "flavors": {} +} \ No newline at end of file diff --git a/example/test/widget_test.dart b/example/test/widget_test.dart deleted file mode 100644 index 37f5d73..0000000 --- a/example/test/widget_test.dart +++ /dev/null @@ -1,30 +0,0 @@ -// 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:flutter_map_arcgis_example/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); - // }); -}