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.
22 lines
646 B
22 lines
646 B
// This is a basic Flutter integration test.
|
|
//
|
|
// Since integration tests run in a full Flutter application, they can interact
|
|
// with the host side of a plugin implementation, unlike Dart unit tests.
|
|
//
|
|
// For more information about Flutter integration tests, please see
|
|
// https://flutter.dev/to/integration-testing
|
|
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'package:flutter_cocos_view/flutter_cocos_view.dart';
|
|
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
testWidgets('getPlatformVersion test', (WidgetTester tester) async {
|
|
|
|
|
|
});
|
|
}
|
|
|