amplify-swift/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/Mocks/MockAWSS3PreSignedURLBuilde...

20 lines
414 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
/*
import Foundation
@testable import AWSS3StoragePlugin
import AWSS3
public class MockAWSS3PreSignedURLBuilder: AWSS3PreSignedURLBuilderBehavior {
public func getPreSignedURL(_ getPreSignedURLRequest: AWSS3GetPreSignedURLRequest) -> AWSTask<NSURL> {
return AWSTask()
}
}
*/