From e676c97ce0c83a321f184ad0cdf23b269ca2ad73 Mon Sep 17 00:00:00 2001 From: arisnguyenit97 Date: Sat, 17 Aug 2024 11:52:14 +0700 Subject: [PATCH] :package: dependency: update README.md #4 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 7f621a8..5b5634a 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,14 @@ implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web // The "spring-boot-configuration-processor" library, version 2.7.18, // is a Spring Boot module that processes configuration metadata annotations to generate metadata files and aid in auto-configuration of Spring applications. implementation group: 'org.springframework.boot', name: 'spring-boot-configuration-processor', version: '2.7.18' +// The "spring-boot-starter-test" module version 2.7.18 provides a comprehensive test framework for Spring Boot applications. +// It includes JUnit, Mockito, Spring TestContext Framework, and other useful tools for testing Spring applications. +// The starter integrates these components seamlessly, making it easier to write and execute tests in a Spring Boot environment. +testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.7.18' +// Mockito JUnit Jupiter version 3.12.4: This library integrates Mockito with JUnit 5, +// enabling developers to write unit tests using Mockito's powerful mocking features. +// It's designed to work specifically with the JUnit 5 platform, allowing for advanced testing capabilities. +testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.12.4' ``` ## Integration