Setup Rest Assured with Eclipse

Rest Assured is a java library for testing of REST services. Rest-Assured is an open-source Java Domain-Specific Language (DSL) . It omits the requirement of using boiler-plate code to test complex API responses and supports both XML and JSON . An official guide of Rest Assured can be found here: Rest Assured Official Guide Introduction: REST Services are used for communication between two platforms which may be are developed using different languages or technologies. The reason behind automation rest services is that it takes less time as well as it helps to find defects earlier as it can be tested before UI is developed. What are Rest API's: REST is the underlying architectural principle of the web. The amazing thing about the web is the fact that clients (browsers) and servers can interact in complex ways without the client knowing anything beforehand about the server and the resources it hosts. The key constraint is that...