1// Copyright (c) 2018 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5import 'dart:async'; 6 7import 'package:flutter_devicelab/tasks/plugin_tests.dart'; 8import 'package:flutter_devicelab/framework/framework.dart'; 9 10Future<void> main() async { 11 await task(combine(<TaskFunction>[ 12 PluginTest('ios', <String>['-i', 'objc']), 13 PluginTest('ios', <String>['-i', 'swift']), 14 ])); 15} 16