blob: 25496d539dc8b47e3329a32fed11c45bb9512420 [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 camera;
@import XCTest;
@interface CameraPluginTests : XCTestCase
@end
@implementation CameraPluginTests
- (void)testModuleImport {
// This test will fail to compile if the module cannot be imported.
// Make sure this plugin supports modules. See https://github.com/flutter/flutter/issues/41007.
// If not already present, add this line to the podspec:
// s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
}
@end