mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
24 lines
448 B
PHP
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');
|
|
}
|
|
|
|
}
|