flutter app untuk unitstock
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 rivejä
347 B

  1. import 'package:e2e/e2e.dart';
  2. import 'package:flutter_test/flutter_test.dart';
  3. import 'package:location/location.dart';
  4. void main() {
  5. E2EWidgetsFlutterBinding.ensureInitialized();
  6. testWidgets('Can instantiate Location object', (WidgetTester tester) async {
  7. final Location location = Location();
  8. expect(location, isNotNull);
  9. });
  10. }