flutter app untuk unitstock
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

13 satır
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. }