Files
asd-control/tests/TestCase/Model/Table/ImportsTableTest.php
2018-07-06 07:31:22 +02:00

89 lines
1.6 KiB
PHP

<?php
namespace App\Test\TestCase\Model\Table;
use App\Model\Table\ImportsTable;
use Cake\ORM\TableRegistry;
use Cake\TestSuite\TestCase;
/**
* App\Model\Table\ImportsTable Test Case
*/
class ImportsTableTest extends TestCase
{
/**
* Test subject
*
* @var \App\Model\Table\ImportsTable
*/
public $Imports;
/**
* Fixtures
*
* @var array
*/
public $fixtures = [
'app.imports',
'app.schooltypes',
'app.departments',
'app.supervisings',
'app.examinations',
'app.subjects'
];
/**
* setUp method
*
* @return void
*/
public function setUp()
{
parent::setUp();
$config = TableRegistry::exists('Imports') ? [] : ['className' => 'App\Model\Table\ImportsTable'];
$this->Imports = TableRegistry::get('Imports', $config);
}
/**
* tearDown method
*
* @return void
*/
public function tearDown()
{
unset($this->Imports);
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.');
}
}