Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Controller/Client/RootTest.php
2015-03-11 15:22:20 +01:00

16 lines
369 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\Controller\Client;
class RootTest extends \PhraseanetAuthenticatedWebTestCase
{
protected $client;
public function testGetClient()
{
$this->authenticate(self::$DI['app']);
self::$DI['client']->request("GET", "/client/");
$this->assertTrue(self::$DI['client']->getResponse()->isOk());
}
}