initial commit

This commit is contained in:
2019-05-07 21:32:41 +02:00
commit f6b9517e50
46 changed files with 2479 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?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');
}
}