blob: a900bfbfdc2e9d5031231f22da958b607853f4ce [file] [log] [blame]
// @dart = 2.9
import 'package:integration_test/integration_test.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:google_sign_in/google_sign_in.dart';
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
testWidgets('Can initialize the plugin', (WidgetTester tester) async {
GoogleSignIn signIn = GoogleSignIn();
expect(signIn, isNotNull);
});
}