This commit is contained in:
Tim Schumacher 2014-06-26 22:00:27 +02:00
commit 741e1c403a
102 changed files with 70058 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<?php
namespace Hackspace\Bundle\CalciferBundle\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);
}
}