Files
Phraseanet/tests/module/console/module_console_schedulerStartTest.php
Romain Neutron abd4a30885 Fix CS
2012-04-16 10:00:12 +02:00

41 lines
806 B
PHP

<?php
require_once __DIR__ . '/../../PhraseanetWebTestCaseAuthenticatedAbstract.class.inc';
use Symfony\Component\Console\Tester\CommandTester;
use \Symfony\Component\Console\Application;
class module_console_schedulerStartTest extends PHPUnit_Framework_TestCase
{
/**
* @var module_console_schedulerStart
*/
protected $object;
protected function setUp()
{
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @todo Implement testExecute().
*/
public function testExecute()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}