diff --git a/test/platform_comm/test_method_channel.dart b/test/platform_comm/test_method_channel.dart index 9b1c09d..d04cbc7 100644 --- a/test/platform_comm/test_method_channel.dart +++ b/test/platform_comm/test_method_channel.dart @@ -13,16 +13,6 @@ class TestMethodChannel implements MethodChannel { @override BinaryMessenger get binaryMessenger => throw UnimplementedError(); - @override - bool checkMethodCallHandler(Future Function(MethodCall call)? handler) { - throw UnimplementedError(); - } - - @override - bool checkMockMethodCallHandler(Future Function(MethodCall call)? handler) { - throw UnimplementedError(); - } - @override MethodCodec get codec => throw UnimplementedError(); @@ -43,7 +33,4 @@ class TestMethodChannel implements MethodChannel { @override String get name => throw UnimplementedError(); - - @override - void setMockMethodCallHandler(Future? Function(MethodCall call)? handler) {} }