point-tools/src/Skobkin/Bundle/PointToolsBundle/Tests/Controller/UserControllerTest.php

17 lines
319 B
PHP
Raw Normal View History

2015-05-30 06:50:44 +00:00
<?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}');
}
}