Add Awaitility to spring-boot-starter-test

Closes gh-37195
pull/37630/head
Andy Wilkinson 1 year ago
parent 6d3594db49
commit 3e9a1cc1f8

@ -41,6 +41,7 @@ The `spring-boot-starter-test` "`Starter`" (in the `test` `scope`) contains the
* https://site.mockito.org/[Mockito]: A Java mocking framework. * https://site.mockito.org/[Mockito]: A Java mocking framework.
* https://github.com/skyscreamer/JSONassert[JSONassert]: An assertion library for JSON. * https://github.com/skyscreamer/JSONassert[JSONassert]: An assertion library for JSON.
* https://github.com/jayway/JsonPath[JsonPath]: XPath for JSON. * https://github.com/jayway/JsonPath[JsonPath]: XPath for JSON.
* https://https://github.com/awaitility/awaitility[Awaitility]: A library for testing asynchronous systems.
We generally find these common libraries to be useful when writing tests. We generally find these common libraries to be useful when writing tests.
If these libraries do not suit your needs, you can add additional test dependencies of your own. If these libraries do not suit your needs, you can add additional test dependencies of your own.

@ -12,6 +12,7 @@ dependencies {
api("jakarta.xml.bind:jakarta.xml.bind-api") api("jakarta.xml.bind:jakarta.xml.bind-api")
api("net.minidev:json-smart") api("net.minidev:json-smart")
api("org.assertj:assertj-core") api("org.assertj:assertj-core")
api("org.awaitility:awaitility")
api("org.hamcrest:hamcrest") api("org.hamcrest:hamcrest")
api("org.junit.jupiter:junit-jupiter") api("org.junit.jupiter:junit-jupiter")
api("org.mockito:mockito-core") api("org.mockito:mockito-core")

Loading…
Cancel
Save