Merge branch 'release-2.140.115'
[feisty_meow.git] / production / example_apps / shared_calendar / tests / TestCase / View / Cell / GoogleCalendarCellTest.php
diff --git a/production/example_apps/shared_calendar/tests/TestCase/View/Cell/GoogleCalendarCellTest.php b/production/example_apps/shared_calendar/tests/TestCase/View/Cell/GoogleCalendarCellTest.php
new file mode 100644 (file)
index 0000000..c12e3bd
--- /dev/null
@@ -0,0 +1,68 @@
+<?php
+namespace App\Test\TestCase\View\Cell;
+
+use App\View\Cell\GoogleCalendarCell;
+use Cake\TestSuite\TestCase;
+
+/**
+ * App\View\Cell\GoogleCalendarCell Test Case
+ */
+class GoogleCalendarCellTest extends TestCase
+{
+
+    /**
+     * Request mock
+     *
+     * @var \Cake\Network\Request|\PHPUnit_Framework_MockObject_MockObject
+     */
+    public $request;
+
+    /**
+     * Response mock
+     *
+     * @var \Cake\Http\Response|\PHPUnit_Framework_MockObject_MockObject
+     */
+    public $response;
+
+    /**
+     * Test subject
+     *
+     * @var \App\View\Cell\GoogleCalendarCell
+     */
+    public $GoogleCalendar;
+
+    /**
+     * setUp method
+     *
+     * @return void
+     */
+    public function setUp()
+    {
+        parent::setUp();
+        $this->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.');
+    }
+}