21 lines
438 B
Swift
21 lines
438 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import XCTest
|
|
@testable import AWSS3StoragePlugin
|
|
|
|
class AWSS3StoragePluginResetTests: AWSS3StoragePluginTests {
|
|
|
|
func testReset() {
|
|
storagePlugin.reset()
|
|
|
|
XCTAssertNil(storagePlugin.authService)
|
|
XCTAssertNil(storagePlugin.storageService)
|
|
XCTAssertNil(storagePlugin.queue)
|
|
}
|
|
}
|