cours-ending/src/CoursEndingBundle/Tests/Controller/DefaultControllerTest.php

18 lines
381 B
PHP
Raw Normal View History

2016-03-18 23:40:48 +01:00
<?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());
}
}