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