Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steelcityamir/effective-testing-in-spring-boot-3
https://github.com/steelcityamir/effective-testing-in-spring-boot-3
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/steelcityamir/effective-testing-in-spring-boot-3
- Owner: steelcityamir
- License: mit
- Created: 2024-04-07T20:39:37.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-08T19:48:10.000Z (7 months ago)
- Last Synced: 2024-04-22T17:23:35.390Z (7 months ago)
- Language: Java
- Size: 89.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Java CI with Gradle](https://github.com/codebyamir/effective-testing-in-spring-boot-3/actions/workflows/gradle.yml/badge.svg)](https://github.com/codebyamir/effective-testing-in-spring-boot-3/actions/workflows/gradle.yml)
[![codecov](https://codecov.io/gh/codebyamir/effective-testing-in-spring-boot-3/graph/badge.svg?token=EZRPG6MC5D)](https://codecov.io/gh/codebyamir/effective-testing-in-spring-boot-3)
# Effective Testing in Spring Boot 3This is the reference application for my eBook "Effective Testing in Spring Boot 3".
The application provides a REST API for a standard eCommerce site with features such as product search, cart management, and order placement.
## Technologies
- Java 21
- Spring Boot 3.2.4
- H2 database## Clone the repository
```bash
git clone https://github.com/codebyamir/effective-testing-in-spring-boot-3.git
cd effective-testing-in-spring-boot-3
```## Running tests
```bash
./gradlew clean test
```