adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / tests / TestCase / View / Cell / GoogleCalendarCellTest.php
1 <?php
2 namespace App\Test\TestCase\View\Cell;
3
4 use App\View\Cell\GoogleCalendarCell;
5 use Cake\TestSuite\TestCase;
6
7 /**
8  * App\View\Cell\GoogleCalendarCell Test Case
9  */
10 class GoogleCalendarCellTest extends TestCase
11 {
12
13     /**
14      * Request mock
15      *
16      * @var \Cake\Network\Request|\PHPUnit_Framework_MockObject_MockObject
17      */
18     public $request;
19
20     /**
21      * Response mock
22      *
23      * @var \Cake\Http\Response|\PHPUnit_Framework_MockObject_MockObject
24      */
25     public $response;
26
27     /**
28      * Test subject
29      *
30      * @var \App\View\Cell\GoogleCalendarCell
31      */
32     public $GoogleCalendar;
33
34     /**
35      * setUp method
36      *
37      * @return void
38      */
39     public function setUp()
40     {
41         parent::setUp();
42         $this->request = $this->getMockBuilder('Cake\Network\Request')->getMock();
43         $this->response = $this->getMockBuilder('Cake\Network\Response')->getMock();
44         $this->GoogleCalendar = new GoogleCalendarCell($this->request, $this->response);
45     }
46
47     /**
48      * tearDown method
49      *
50      * @return void
51      */
52     public function tearDown()
53     {
54         unset($this->GoogleCalendar);
55
56         parent::tearDown();
57     }
58
59     /**
60      * Test display method
61      *
62      * @return void
63      */
64     public function testDisplay()
65     {
66         $this->markTestIncomplete('Not implemented yet.');
67     }
68 }