jvmMain.com.steamstreet.aws.test.S3Mock.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of awskt-test-jvm Show documentation
Show all versions of awskt-test-jvm Show documentation
Some useful tools for writing local unit tests.
package com.steamstreet.aws.test
import aws.sdk.kotlin.services.s3.S3Client
import io.mockk.mockk
public class S3Local(
private val mock: S3Client = mockk(relaxed = true)
) : S3Client by mock, MockService {
override fun close() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy