flutter京东SDK插件
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567891011121314151617181920212223
  1. import 'package:flutter/services.dart';
  2. import 'package:flutter_test/flutter_test.dart';
  3. import 'package:jdsdk/jdsdk.dart';
  4. void main() {
  5. const MethodChannel channel = MethodChannel('jdsdk');
  6. TestWidgetsFlutterBinding.ensureInitialized();
  7. setUp(() {
  8. channel.setMockMethodCallHandler((MethodCall methodCall) async {
  9. return '42';
  10. });
  11. });
  12. tearDown(() {
  13. channel.setMockMethodCallHandler(null);
  14. });
  15. test('getPlatformVersion', () async {
  16. expect(await Jdsdk.platformVersion, '42');
  17. });
  18. }