28 lines
574 B
Swift
28 lines
574 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 MockS3: AWSS3Behavior {
|
|
public func getS3() -> AWSS3 {
|
|
return AWSS3()
|
|
}
|
|
|
|
public func listObjectsV2(_ request: AWSS3ListObjectsV2Request) -> AWSTask<AWSS3ListObjectsV2Output> {
|
|
return AWSTask()
|
|
}
|
|
|
|
public func deleteObject(_ request: AWSS3DeleteObjectRequest) -> AWSTask<AWSS3DeleteObjectOutput> {
|
|
|
|
return AWSTask()
|
|
}
|
|
}
|
|
*/
|