Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Controller/Client/RootTest.php
2015-02-17 19:23:35 +01:00

16 lines
377 B
PHP

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