cours-ending/src/CoursEndingBundle/Tests/Controller/DefaultControllerTest.php
2016-03-18 23:40:48 +01:00

18 lines
381 B
PHP

<?php
namespace CoursEndingBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class DefaultControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/');
$this->assertContains('Hello World', $client->getResponse()->getContent());
}
}