add veilid flutter plugin skeleton
This commit is contained in:
23
veilid-flutter/test/veilid_test.dart
Normal file
23
veilid-flutter/test/veilid_test.dart
Normal file
@@ -0,0 +1,23 @@
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:veilid/veilid.dart';
|
||||
|
||||
void main() {
|
||||
const MethodChannel channel = MethodChannel('veilid');
|
||||
|
||||
TestWidgetsFlutterBinding.ensureInitialized();
|
||||
|
||||
setUp(() {
|
||||
channel.setMockMethodCallHandler((MethodCall methodCall) async {
|
||||
return '42';
|
||||
});
|
||||
});
|
||||
|
||||
tearDown(() {
|
||||
channel.setMockMethodCallHandler(null);
|
||||
});
|
||||
|
||||
test('getPlatformVersion', () async {
|
||||
expect(await Veilid.platformVersion, '42');
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user