基础组件库
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ů.

zhiying_base_widget_test.dart 453 B

před 4 roky
před 4 roky
před 4 roky
1234567891011121314151617181920
  1. import 'package:flutter/services.dart';
  2. import 'package:flutter_test/flutter_test.dart';
  3. void main() {
  4. const MethodChannel channel = MethodChannel('zhiying_base_widget');
  5. TestWidgetsFlutterBinding.ensureInitialized();
  6. setUp(() {
  7. channel.setMockMethodCallHandler((MethodCall methodCall) async {
  8. return '42';
  9. });
  10. });
  11. tearDown(() {
  12. channel.setMockMethodCallHandler(null);
  13. });
  14. test('getPlatformVersion', () async {});
  15. }