I have JUnit
tests for REST web services. Now I think that JUnit
is not the best tool for that, since these tests are integration tests but not unit tests. So I probably need a Java library, which helps to send HTTP requests, verify HTTP responses, create reports and do that in parallel.
On the other hand maybe I am mistaken and Junit
(with HTTPUnit
etc.) is good enough and I don't need other tools.
What would you suggest?