https://github.com/mkopylec/web-dev-calendar
Coding task implementation
https://github.com/mkopylec/web-dev-calendar
Last synced: 8 months ago
JSON representation
Coding task implementation
- Host: GitHub
- URL: https://github.com/mkopylec/web-dev-calendar
- Owner: mkopylec
- Created: 2015-07-02T18:00:54.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-02T18:02:14.000Z (almost 11 years ago)
- Last Synced: 2023-03-01T09:47:15.827Z (over 3 years ago)
- Language: Java
- Size: 156 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WebDev Calendar
Coding task implementation.
## How to run application
Run application:
./gradlew clean bootRun
Test application with different input data:
curl -i -H "Content-Type: application/json" --data @src/test/resources/exact_meetings_found_input.json localhost:8080/meetings
curl -i -H "Content-Type: application/json" --data @src/test/resources/no_meetings_found_input.json localhost:8080/meetings
curl -i -H "Content-Type: application/json" --data @src/test/resources/not_enough_meetings_found_input.json localhost:8080/meetings
## How to run integration tests
./gradlew clean test