![Breakpoint screenshot](https://i.stack.imgur.com/IiFBl.png)
![Debug screenshot](https://i.stack.imgur.com/bitei.png)
public void getAllEmployeesTest() throws IOException {
HttpResponse response = http.get("http://localhost:8087/employee");
List<Employee> expectedList = new ArrayList<>();
expectedList.add(new Employee(2, "Yashwant", "Chavan", 30, false));
Type listType = new TypeToken<ArrayList<Employee>>() {
}.getType();
List<Employee> actualList = gson.fromJson(EntityUtils.toString(response.getEntity()), listType);
Assert.assertEquals(expectedList,actualList);
}