blob: a94bd88f24fee63599da571c7357c5d8ca850cdc [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 url_launcher_ios;
@import XCTest;
@interface URLLauncherTests : XCTestCase
@end
@implementation URLLauncherTests
- (void)testPlugin {
FLTURLLauncherPlugin* plugin = [[FLTURLLauncherPlugin alloc] init];
XCTAssertNotNil(plugin);
}
@end