Files
Phraseanet/tests/Alchemy/Phrasea/Controller/BoilerPlate.php
2012-10-04 15:31:37 +02:00

35 lines
810 B
PHP

<?php
require_once __DIR__ . '/../../../../PhraseanetWebTestCaseAbstract.class.inc';
/**
* Always load the controller file for CodeCoverage
*/
require_once __DIR__ . '/../../../../../lib/Alchemy/Phrasea/Controller/My/Controller.php';
use Silex\WebTestCase;
use Symfony\Component\HttpFoundation\Response;
/**
*
* This class is a BoilerPlate for a Controller Test
*
* - You should extends PhraseanetWebTestCaseAuthenticatedAbstract if the
* controller required authentication
*
* - The Class Name should end with "Test" to be detected by
*
*/
class BoilerPlate extends \PhraseanetWebTestCaseAbstract
{
/**
* Default route test
*/
public function testRouteSlash()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}