There's a Javalin testing tutorial that demonstrates using a library called Unirest to fake the HTTP requests and responses that we'd need to test the Server class directly. If we added these tests we'd
- Have better end-to-end coverage of the server code
- Be able to include
Server in the test coverage calculations
There's a Javalin testing tutorial that demonstrates using a library called Unirest to fake the HTTP requests and responses that we'd need to test the
Serverclass directly. If we added these tests we'dServerin the test coverage calculations