Documentation of Cherry Framework

Restful Missions

'Take a Rest while I automate your APIs', said the Agent...

You just need to add the cherry-rest module in your dependencies and then you will be able to use it like this:

   Agent agent = AgentProvider.agent();
   Response response =  agent.performs(Restful.get("http://my.api"));
   assertThat(response.statusCode(), is(200));

<More information and capabilities to be added soon...>