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

17 lines
308 B
PHP
Raw Normal View History

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