https://github.com/bredah/fake-social-network
projeto de exemplo para estudos, nenhum dado real é utilizado
https://github.com/bredah/fake-social-network
java java17 junit5 maven restassured spring-mvc
Last synced: 3 months ago
JSON representation
projeto de exemplo para estudos, nenhum dado real é utilizado
- Host: GitHub
- URL: https://github.com/bredah/fake-social-network
- Owner: bredah
- Created: 2023-05-22T20:05:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-05T20:42:11.000Z (about 3 years ago)
- Last Synced: 2025-05-17T08:08:57.902Z (about 1 year ago)
- Topics: java, java17, junit5, maven, restassured, spring-mvc
- Language: Java
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Social Network
## Command
- Run app
```sh
make start-api
```
## Test
Run single test class
```sh
# Test Class
mvn test -Dtest=ClassName
# Test Method
mvn test -Dtest=ClassName#MethodName
# Test TAG
mvn test -Dgroups=TAG
# Maven Module
mvn test -pl :web
```
> This command defaults to the `dev` profile in Spring Boot
## More details
- [Data Base](./extra/doc/data-base.md)
- [Debug](./extra/doc/debug.md)