/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
tests
/
TestCase
/
Model
/
Table
/
/var/www/vhosts/ihelp.ro/httpdocs/tests/TestCase/Model/Table
mkdir
upload
Name
Size
Mode
Actions
AwbsTableTest.php
1438
0644
edit
dl
rm
CitiesTableTest.php
1383
0644
edit
dl
rm
CountiesTableTest.php
1215
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/tests/TestCase/Model/Table/AwbsTableTest.php
(1438B)
<?php declare(strict_types=1); namespace App\Test\TestCase\Model\Table; use App\Model\Table\AwbsTable; use Cake\TestSuite\TestCase; /** * App\Model\Table\AwbsTable Test Case */ class AwbsTableTest extends TestCase { /** * Test subject * * @var \App\Model\Table\AwbsTable */ protected $Awbs; /** * Fixtures * * @var array */ protected $fixtures = [ 'app.Awbs', 'app.SenderUsers', 'app.Orders', 'app.Couriers', 'app.ReceverUsers', 'app.OrderProducts', ]; /** * setUp method * * @return void */ public function setUp(): void { parent::setUp(); $config = $this->getTableLocator()->exists('Awbs') ? [] : ['className' => AwbsTable::class]; $this->Awbs = $this->getTableLocator()->get('Awbs', $config); } /** * tearDown method * * @return void */ public function tearDown(): void { unset($this->Awbs); parent::tearDown(); } /** * Test validationDefault method * * @return void */ public function testValidationDefault(): void { $this->markTestIncomplete('Not implemented yet.'); } /** * Test buildRules method * * @return void */ public function testBuildRules(): void { $this->markTestIncomplete('Not implemented yet.'); } }
Save
cmd:
run