mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
17 lines
301 B
PHP
17 lines
301 B
PHP
<?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');
|
|
}
|
|
|
|
}
|