Prepare for moving into monorepo

This commit is contained in:
2021-03-18 12:46:40 +01:00
parent f7e3ab8824
commit e7ace387ca
46 changed files with 0 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');
}
}