// --------------------------------------------------------------------
// JSON
// --------------------------------------------------------------------
/**
* Returns the response's body as JSON
*
* @return false|string
*/
public function getJSON() { $response =
$this->response->
getJSON();
if ($response === null
) { return false;
} return $response;
} /**
* Test that the response contains a matching JSON fragment.
*
* @throws Exception
*/