Voucher Shop

Java CI with Maven

Testing

mvn test

testing via curl

curl -X POST localhost:9999/api/clients -H 'content-type: application/json' -d '{"firstname": "Julia", "lastname": "Matejko", "address": {"street": "prosta"}}'
curl -X POST localhost:9999/api/clients -H 'content-type: application/json' -d '{"firstname": "Julia", "lastname": "Matejko", "address": {"street": "krzywa"}}'
curl -X POST localhost:9999/api/clients -H 'content-type: application/json' -d '{"firstname": "Julia", "lastname": "Matejko", "address": {"street": "dluga"}}'

curl localhost:9999/api/clients | jq
curl localhost:9999/api/clients | python -m json.tool