// Copyright 2014 The Flutter Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.importFlutterMacOSpublicclassIntegrationTestPlugin:NSObject,FlutterPlugin{publicstaticfuncregister(withregistrar:FlutterPluginRegistrar){letchannel=FlutterMethodChannel(name:"plugins.flutter.io/integration_test",binaryMessenger:registrar.messenger)letinstance=IntegrationTestPlugin()registrar.addMethodCallDelegate(instance,channel:channel)}publicfunchandle(_call:FlutterMethodCall,result:@escapingFlutterResult){switchcall.method{case"allTestsFinished":result(nil)default:result(FlutterMethodNotImplemented)}}}