I have a REST(jersey) service exposed which basically delegates the call to DAO to fetch some data from the DB and return it into JSON format, How to unit test the webservice? AS i can write jersey client code in junit but what about the data fetch calls that the webservice delegates to the dao? The backend code of Logic and DAO can be tested separately but what about the Web Service? So please advice on the best practice.
Thanks! Tarun