|
- <?php
- declare(strict_types=1);
-
- namespace App\Test\TestCase\Model\Table;
-
- use App\Model\Table\TerritoriesTable;
- use Cake\TestSuite\TestCase;
-
- /**
- * App\Model\Table\TerritoriesTable Test Case
- */
- class TerritoriesTableTest extends TestCase
- {
- /**
- * Test subject
- *
- * @var \App\Model\Table\TerritoriesTable
- */
- protected $Territories;
-
- /**
- * Fixtures
- *
- * @var array<string>
- */
- protected array $fixtures = [
- 'app.Territories',
- ];
-
- /**
- * setUp method
- *
- * @return void
- */
- protected function setUp(): void
- {
- parent::setUp();
- $config = $this->getTableLocator()->exists('Territories') ? [] : ['className' => TerritoriesTable::class];
- $this->Territories = $this->getTableLocator()->get('Territories', $config);
- }
-
- /**
- * tearDown method
- *
- * @return void
- */
- protected function tearDown(): void
- {
- unset($this->Territories);
-
- parent::tearDown();
- }
-
- /**
- * Test validationDefault method
- *
- * @return void
- * @link \App\Model\Table\TerritoriesTable::validationDefault()
- */
- public function testValidationDefault(): void
- {
- $this->markTestIncomplete('Not implemented yet.');
- }
- }
|