*/ protected array $fixtures = [ 'app.Tools', ]; /** * setUp method * * @return void */ protected function setUp(): void { parent::setUp(); $config = $this->getTableLocator()->exists('Tools') ? [] : ['className' => ToolsTable::class]; $this->Tools = $this->getTableLocator()->get('Tools', $config); } /** * tearDown method * * @return void */ protected function tearDown(): void { unset($this->Tools); parent::tearDown(); } /** * Test validationDefault method * * @return void * @link \App\Model\Table\ToolsTable::validationDefault() */ public function testValidationDefault(): void { $this->markTestIncomplete('Not implemented yet.'); } }