*/ protected array $fixtures = [ 'plugin.CakeAddresses.Subregions', 'plugin.CakeAddresses.Regions', 'plugin.CakeAddresses.Countries', ]; /** * setUp method * * @return void */ protected function setUp(): void { parent::setUp(); $config = $this->getTableLocator()->exists('Subregions') ? [] : ['className' => SubregionsTable::class]; $this->Subregions = $this->getTableLocator()->get('Subregions', $config); } /** * tearDown method * * @return void */ protected function tearDown(): void { unset($this->Subregions); parent::tearDown(); } /** * Test validationDefault method * * @return void * @uses \CakeAddresses\Model\Table\SubregionsTable::validationDefault() */ public function testValidationDefault(): void { $this->markTestIncomplete('Not implemented yet.'); } /** * Test buildRules method * * @return void * @uses \CakeAddresses\Model\Table\SubregionsTable::buildRules() */ public function testBuildRules(): void { $this->markTestIncomplete('Not implemented yet.'); } }