chill-bundles/Tests/Controller/PersonControllerTest.php

17 lines
298 B
PHP

<?php
namespace 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');
}
}