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