login form

This commit is contained in:
2014-11-06 16:37:30 +01:00
parent 0de9cb3a69
commit 3ab38b2602
4 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace Chill\MainBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class LoginControllerTest extends WebTestCase
{
public function testLogin()
{
$client = static::createClient();
$crawler = $client->request('GET', '/login');
}
}