. */ namespace Xibo\Tests\Integration; class ClockTest extends \Xibo\Tests\LocalWebTestCase { public function testView() { $response = $this->sendRequest('GET','/clock'); $this->assertSame(200, $response->getStatusCode()); $this->assertNotEmpty($response); $response = json_decode($response->getBody()); $this->assertNotEmpty($response->data); } }