request = $this->getMockBuilder('Cake\Network\Request')->getMock(); $this->response = $this->getMockBuilder('Cake\Network\Response')->getMock(); $this->GoogleCalendar = new GoogleCalendarCell($this->request, $this->response); } /** * tearDown method * * @return void */ public function tearDown() { unset($this->GoogleCalendar); parent::tearDown(); } /** * Test display method * * @return void */ public function testDisplay() { $this->markTestIncomplete('Not implemented yet.'); } }