https://github.com/teedjay/quarkus-testing
Checking out different testing strategies for Quarkus
https://github.com/teedjay/quarkus-testing
Last synced: over 1 year ago
JSON representation
Checking out different testing strategies for Quarkus
- Host: GitHub
- URL: https://github.com/teedjay/quarkus-testing
- Owner: teedjay
- Created: 2020-02-28T22:12:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-12T11:05:47.000Z (over 6 years ago)
- Last Synced: 2025-01-13T15:53:16.194Z (over 1 year ago)
- Language: Java
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quarkus-template
Starting template for experimenting with latest Quarkus features
## Curl to test
```
# To get the txt template
curl -i http://localhost:8080/hello -H "Accept: text/plain"
# To get the html template
curl -i http://localhost:8080/hello -H "Accept: text/html"
# To get the xml version
curl -i http://localhost:8080/hello -H "Accept: application/xml"
```
## URL's to test in browser
```
http://localhost:8080/hello
http://localhost:8080/notfound
http://localhost:8080/metrics
http://localhost:8080/openapi
http://localhost:8080/swagger-ui
```
## Open the JaCoCo code coverage report
```
open target/site/jacoco/index.html
```