initial commit

This commit is contained in:
2019-05-09 09:22:56 +02:00
commit 04506781cd
32 changed files with 2330 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace Chill\AMLI\FamilyMembersBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class FamilyMemberControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/index');
}
public function testNew()
{
$client = static::createClient();
$crawler = $client->request('GET', '/new');
}
public function testEdit()
{
$client = static::createClient();
$crawler = $client->request('GET', '/edit');
}
}