This commit is contained in:
2018-11-02 07:37:22 +01:00
parent 6ff6cc9563
commit 09ee6ddc3e
37 changed files with 5659 additions and 553545 deletions

View File

@@ -0,0 +1,71 @@
<?php
namespace App\Test\TestCase\Controller;
use App\Controller\UsfailsController;
use Cake\TestSuite\IntegrationTestCase;
/**
* App\Controller\UsfailsController Test Case
*/
class UsfailsControllerTest extends IntegrationTestCase
{
/**
* Fixtures
*
* @var array
*/
public $fixtures = [
'app.usfails'
];
/**
* 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.');
}
}