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

90 lines
1.6 KiB
PHP

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