{
@Test
public void given_a_valid_request_when__echo_time_is_called_then_current_time_is_returned_as_json() throws Exception
{
final RestTemplate template = new RestTemplate();
final HttpHeaders headers = new HttpHeadersBuilder().acceptJSON().acceptUTF8().build();
final HttpEntity<String> entity = new HttpEntity<String>( headers );
try
{
final ResponseEntity<String> response = template.exchange( "http://localhost:8080/echo/time", HttpMethod.GET, entity, String.class );