arhohuttunen / awstestkit

Programmer-friendly testing library for working with AWS SDK.

Home Page:https://arhohuttunen.github.io/awstestkit/docs/snapshot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Programmer-friendly testing library for working with AWS SDK.

https://arhohuttunen.github.io/awstestkit/docs/snapshot

License:MIT License


Languages

Language:Kotlin 98.6%Language:Shell 1.4%