From a90716522ca88bdc94dd86524039f1a54ff167fe Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 23 Mar 2020 20:05:58 +0100 Subject: [PATCH] Include Testcontainers in Further Resources section --- src/docs/asciidoc/testing.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/docs/asciidoc/testing.adoc b/src/docs/asciidoc/testing.adoc index 0b51a0cd87..b54635d8c4 100644 --- a/src/docs/asciidoc/testing.adoc +++ b/src/docs/asciidoc/testing.adoc @@ -8385,6 +8385,9 @@ See the following resources for more information about testing: * https://www.dbunit.org/[DbUnit]: JUnit extension (also usable with Ant and Maven) that is targeted at database-driven projects and, among other things, puts your database into a known state between test runs. +* https://www.testcontainers.org/[Testcontainers]: Java library that supports JUnit + tests, providing lightweight, throwaway instances of common databases, Selenium web + browsers, or anything else that can run in a Docker container. * https://sourceforge.net/projects/grinder/[The Grinder]: Java load testing framework. * https://github.com/Ninja-Squad/springmockk[SpringMockK]: Support for Spring Boot integration tests written in Kotlin using https://mockk.io/[MockK] instead of Mockito.