mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-28 21:16:13 +00:00
17 lines
299 B
PHP
17 lines
299 B
PHP
<?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');
|
|
}
|
|
|
|
}
|