blob: a3f66ec5912d6e34328ddd4d9c8a0558c78d5839 [file] [log] [blame]
// Copyright 2013 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.
import 'dart:io' show Platform;
import 'package:shared_test_plugin_code/integration_tests.dart';
void main() => runPigeonIntegrationTests(_getTarget());
TargetGenerator _getTarget() {
if (Platform.isAndroid) {
return TargetGenerator.java;
}
if (Platform.isIOS) {
return TargetGenerator.objc;
}
throw UnimplementedError('Unsupported target.');
}