mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 05:23:21 +00:00
41 lines
806 B
PHP
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.'
|
|
);
|
|
}
|
|
|
|
}
|