Files
Phraseanet/lib/unitTest/Alchemy/Phrasea/Application/SetupTest.php
Romain Neutron 2121a6fe03 Cleanup Tests
2012-01-11 20:03:16 +01:00

41 lines
849 B
PHP

<?php
require_once __DIR__ . '/../../../PhraseanetWebTestCaseAuthenticatedAbstract.class.inc';
require_once __DIR__ . '/../../../../Alchemy/Phrasea/Application/Setup.php';
use Silex\WebTestCase;
use Symfony\Component\HttpFoundation\Response;
class ApplicationSetupTest extends PhraseanetWebTestCaseAuthenticatedAbstract
{
protected $client;
protected static $need_records = false;
public function createApplication()
{
return require __DIR__ . '/../../../../Alchemy/Phrasea/Application/Setup.php';
}
public function setUp()
{
parent::setUp();
$this->client = $this->createClient();
}
public function tearDown()
{
$this->feed->delete();
parent::tearDown();
}
public function testRouteSlash()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}