view one person + list

This commit is contained in:
2013-10-31 16:14:20 +01:00
parent d0c480802e
commit 03091a94d6
8 changed files with 241 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace CL\Chill\PersonBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class PersonControllerTest extends WebTestCase
{
public function testSee()
{
$client = static::createClient();
$crawler = $client->request('GET', '/see');
}
}