wallabag/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
2015-01-31 09:35:50 +01:00

18 lines
375 B
PHP

<?php
namespace Wallabag\CoreBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class EntryControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/new');
$this->assertEquals(200, $client->getResponse()->getStatusCode());
}
}