blob: 94b3f9f0f517e062a14da45107e96358143f82fd [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 shared_preferences_ios;
@import XCTest;
@interface SharedPreferencesTests : XCTestCase
@end
@implementation SharedPreferencesTests
- (void)testPlugin {
FLTSharedPreferencesPlugin* plugin = [[FLTSharedPreferencesPlugin alloc] init];
XCTAssertNotNil(plugin);
}
@end