https://github.com/eliasnogueira/credit-simulator-api
This project was created to start the initial steps with test automation for a REST API using RestAssured.
https://github.com/eliasnogueira/credit-simulator-api
apitesting restassured testautomation
Last synced: 3 months ago
JSON representation
This project was created to start the initial steps with test automation for a REST API using RestAssured.
- Host: GitHub
- URL: https://github.com/eliasnogueira/credit-simulator-api
- Owner: eliasnogueira
- License: mit
- Created: 2020-02-02T18:51:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-06T20:32:25.000Z (over 1 year ago)
- Last Synced: 2025-02-01T15:11:22.569Z (9 months ago)
- Topics: apitesting, restassured, testautomation
- Language: Java
- Homepage: http://eliasnogueira.com
- Size: 74.2 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Credit Simulator API
This project was created to start the initial steps with test automation for a REST API using RestAssured.# About the API
## How to start the API
First, clone or download this project. After:
1. Navigate to the project folder using the Terminal / Command prompt
2. Execute the following: `mvn spring-boot:run`
3. Wait until you see something like this: _Started CreditSimulatorApplication in 6.53 seconds_
4. The API is ready and listen all requests on `http://localhost:8089`## How to change the port
The default port is `8089`.
If you want to change the port to another one, execute the following command, replacing the text ``.
```
mvn spring-boot:run -Dspring-boot.run.arguments=--server.port=
```## How to access the documentation (Swagger)
After the application has started open the link: http://localhost:8089/swagger-ui/index.html# Do you want to help?
Please read the [Contribution guide](CONTRIBUTING.md)