chill-bundles/Tests/Controller/ElementControllerTest.php
2019-05-07 21:32:41 +02:00

24 lines
448 B
PHP

<?php
namespace Chill\AMLI\BudgetBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class ElementControllerTest extends WebTestCase
{
public function testList()
{
$client = static::createClient();
$crawler = $client->request('GET', '/list');
}
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/index');
}
}