webadmin/tests/TestCase/Controller/AccountMappingsControllerTest.php
2017-06-22 15:48:15 +03:00

75 lines
1.3 KiB
PHP

<?php
namespace App\Test\TestCase\Controller;
use App\Controller\AccountMappingsController;
use Cake\TestSuite\IntegrationTestCase;
/**
* App\Controller\AccountMappingsController Test Case
*/
class AccountMappingsControllerTest extends IntegrationTestCase
{
/**
* Fixtures
*
* @var array
*/
public $fixtures = [
'app.account_mappings',
'app.accounts',
'app.shards',
'app.admin_mappings',
'app.users'
];
/**
* Test index method
*
* @return void
*/
public function testIndex()
{
$this->markTestIncomplete('Not implemented yet.');
}
/**
* Test view method
*
* @return void
*/
public function testView()
{
$this->markTestIncomplete('Not implemented yet.');
}
/**
* Test add method
*
* @return void
*/
public function testAdd()
{
$this->markTestIncomplete('Not implemented yet.');
}
/**
* Test edit method
*
* @return void
*/
public function testEdit()
{
$this->markTestIncomplete('Not implemented yet.');
}
/**
* Test delete method
*
* @return void
*/
public function testDelete()
{
$this->markTestIncomplete('Not implemented yet.');
}
}