Merge branch 'release-2.140.115'
[feisty_meow.git] / production / example_apps / zippy_maps / tests / TestCase / Model / Table / CategoriesTableTest.php
diff --git a/production/example_apps/zippy_maps/tests/TestCase/Model/Table/CategoriesTableTest.php b/production/example_apps/zippy_maps/tests/TestCase/Model/Table/CategoriesTableTest.php
new file mode 100644 (file)
index 0000000..a618e67
--- /dev/null
@@ -0,0 +1,83 @@
+<?php
+namespace App\Test\TestCase\Model\Table;
+
+use App\Model\Table\CategoriesTable;
+use Cake\ORM\TableRegistry;
+use Cake\TestSuite\TestCase;
+
+/**
+ * App\Model\Table\CategoriesTable Test Case
+ */
+class CategoriesTableTest extends TestCase
+{
+
+    /**
+     * Test subject
+     *
+     * @var \App\Model\Table\CategoriesTable
+     */
+    public $Categories;
+
+    /**
+     * Fixtures
+     *
+     * @var array
+     */
+    public $fixtures = [
+        'app.categories'
+    ];
+
+    /**
+     * setUp method
+     *
+     * @return void
+     */
+    public function setUp()
+    {
+        parent::setUp();
+        $config = TableRegistry::exists('Categories') ? [] : ['className' => 'App\Model\Table\CategoriesTable'];
+        $this->Categories = TableRegistry::get('Categories', $config);
+    }
+
+    /**
+     * tearDown method
+     *
+     * @return void
+     */
+    public function tearDown()
+    {
+        unset($this->Categories);
+
+        parent::tearDown();
+    }
+
+    /**
+     * Test initialize method
+     *
+     * @return void
+     */
+    public function testInitialize()
+    {
+        $this->markTestIncomplete('Not implemented yet.');
+    }
+
+    /**
+     * Test validationDefault method
+     *
+     * @return void
+     */
+    public function testValidationDefault()
+    {
+        $this->markTestIncomplete('Not implemented yet.');
+    }
+
+    /**
+     * Test buildRules method
+     *
+     * @return void
+     */
+    public function testBuildRules()
+    {
+        $this->markTestIncomplete('Not implemented yet.');
+    }
+}