Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 891 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 891 Bytes

Gradle Build codecov codefactor

AWS TestKit

AWS TestKit is a programmer-friendly testing library for working with AWS SDK.

An example of ease-of-use with LocalStack and Testcontainers:

@LocalStackTest
@SnsTest
class LocalStackExtensionTest {
    @Test
    void localStackIsRunning(@AwsClient SnsClient client) {
        assertIterableEquals(client.listTopics().topics(), emptyList());
    }
}

Documentation

User Guide