-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the ecse321-group-project-01-1 for the Co-Operator project! Here you will find the key documentation for the project such as
- Key design choices
- Project reports
- Requirements
Minimum required versions of:
- Gradle (4.10.1)
- Java (10.0.2)
- Spring Boot 4
- Junit4
- EclEmma
- Postman (6.7.4)
After opening the project on Spring, the tests are found in src/test/java.
- BackendApplicationServiceTests.java contains the testing of persistence layer
- BackendApplicationTests.java contains the unit tests
The tests can easily be performed by running them as JUnit 4 tests.
To run the software, BackendApplication.java needs to be run as a Spring Boot App. Afterwards, for as long as the app runs, the operations can be performed through an API development environment (Postman 6.7.4 in our case).
To perform operations, simply type in the URI into Postman (with the correct method of either POST or GET). A collection of example URIs is included in Project Report 2, but the general rule is to concatenate "http://localhost:8080" with the code past the respective @PostMapping or @GetMapping annotation.