X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=production%2Fexample_apps%2Fzippy_maps%2Ftests%2FTestCase%2FModel%2FTable%2FCategoriesLocationsTableTest.php;fp=production%2Fexample_apps%2Fzippy_maps%2Ftests%2FTestCase%2FModel%2FTable%2FCategoriesLocationsTableTest.php;h=1a4579563e5dc3792463f9db4d6fc5b5482ba47a;hb=34d1cb2e8687b826357db1d3821bf9e05cf6f13d;hp=0000000000000000000000000000000000000000;hpb=21f30bb859e6c15393e23ac0e5ef417b82f628a5;p=feisty_meow.git diff --git a/production/example_apps/zippy_maps/tests/TestCase/Model/Table/CategoriesLocationsTableTest.php b/production/example_apps/zippy_maps/tests/TestCase/Model/Table/CategoriesLocationsTableTest.php new file mode 100644 index 00000000..1a457956 --- /dev/null +++ b/production/example_apps/zippy_maps/tests/TestCase/Model/Table/CategoriesLocationsTableTest.php @@ -0,0 +1,85 @@ + 'App\Model\Table\CategoriesLocationsTable']; + $this->CategoriesLocations = TableRegistry::get('CategoriesLocations', $config); + } + + /** + * tearDown method + * + * @return void + */ + public function tearDown() + { + unset($this->CategoriesLocations); + + 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.'); + } +}