From b64aef3f45f57be9e58c199164d8f3c622696c03 Mon Sep 17 00:00:00 2001 From: Richard North Date: Tue, 12 May 2020 08:48:25 +0100 Subject: [PATCH] Fix capitalization of Testcontainers in Howto docs --- .../spring-boot-docs/src/docs/asciidoc/howto.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc index f5611becfeb3..65960f4f5488 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc @@ -2951,11 +2951,11 @@ The following example shows how to do so in Gradle: [[howto-testcontainers]] -=== Use TestContainers for integration testing -The https://www.testcontainers.org/[TestContainers] library provides a way to manage services running inside Docker containers. +=== Use Testcontainers for integration testing +The https://www.testcontainers.org/[Testcontainers] library provides a way to manage services running inside Docker containers. It integrates with JUnit, allowing you to write a test class that can start up a container before any of the tests run. -TestContainers is especially useful for writing integration tests that talk to a real backend service such as MySQL, MongoDB, Cassandra etc. -TestContainers can be used in a Spring Boot test as follows: +Testcontainers is especially useful for writing integration tests that talk to a real backend service such as MySQL, MongoDB, Cassandra etc. +Testcontainers can be used in a Spring Boot test as follows: [source,java,indent=0,subs="verbatim,quotes,attributes"] ----