adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / zippy_maps / tests / TestCase / Model / Table / CategoriesTableTest.php
1 <?php
2 namespace App\Test\TestCase\Model\Table;
3
4 use App\Model\Table\CategoriesTable;
5 use Cake\ORM\TableRegistry;
6 use Cake\TestSuite\TestCase;
7
8 /**
9  * App\Model\Table\CategoriesTable Test Case
10  */
11 class CategoriesTableTest extends TestCase
12 {
13
14     /**
15      * Test subject
16      *
17      * @var \App\Model\Table\CategoriesTable
18      */
19     public $Categories;
20
21     /**
22      * Fixtures
23      *
24      * @var array
25      */
26     public $fixtures = [
27         'app.categories'
28     ];
29
30     /**
31      * setUp method
32      *
33      * @return void
34      */
35     public function setUp()
36     {
37         parent::setUp();
38         $config = TableRegistry::exists('Categories') ? [] : ['className' => 'App\Model\Table\CategoriesTable'];
39         $this->Categories = TableRegistry::get('Categories', $config);
40     }
41
42     /**
43      * tearDown method
44      *
45      * @return void
46      */
47     public function tearDown()
48     {
49         unset($this->Categories);
50
51         parent::tearDown();
52     }
53
54     /**
55      * Test initialize method
56      *
57      * @return void
58      */
59     public function testInitialize()
60     {
61         $this->markTestIncomplete('Not implemented yet.');
62     }
63
64     /**
65      * Test validationDefault method
66      *
67      * @return void
68      */
69     public function testValidationDefault()
70     {
71         $this->markTestIncomplete('Not implemented yet.');
72     }
73
74     /**
75      * Test buildRules method
76      *
77      * @return void
78      */
79     public function testBuildRules()
80     {
81         $this->markTestIncomplete('Not implemented yet.');
82     }
83 }