17 lines
319 B
PHP
17 lines
319 B
PHP
|
<?php
|
||
|
|
||
|
namespace Skobkin\Bundle\PointToolsBundle\Tests\Controller;
|
||
|
|
||
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||
|
|
||
|
class UserControllerTest extends WebTestCase
|
||
|
{
|
||
|
public function testShow()
|
||
|
{
|
||
|
$client = static::createClient();
|
||
|
|
||
|
$crawler = $client->request('GET', '/user/{login}');
|
||
|
}
|
||
|
|
||
|
}
|