initial commit

This commit is contained in:
2016-03-18 10:28:26 +01:00
commit c43e7daefe
9 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace Chill\EventBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class DefaultControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/hello/Fabien');
$this->assertTrue($crawler->filter('html:contains("Hello Fabien")')->count() > 0);
}
}