mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
namespace App\Tests\Unit\Controller;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\Controller\UserController;
|
|
use App\Controller\UserControllerInterface;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
class UserControllerTest extends TestCase
|
|
{
|
|
/**
|
|
*
|
|
* @var UserControllerInterface
|
|
*/
|
|
protected $userController;
|
|
|
|
public function setUp():void{
|
|
$this->userController = new UserController();
|
|
}
|
|
|
|
public function testLogout(): void
|
|
{
|
|
$client = static::createClient();
|
|
$client->request('GET', '/user/logout');
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
}
|
|
|
|
public function testLogin(): void
|
|
{
|
|
$client = static::createClient();
|
|
$client->request('GET', '/user/login');
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
}
|
|
|
|
public function testRegister():void
|
|
{
|
|
$client = static::createClient();
|
|
$client->request('GET', '/user/register');
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
}
|
|
}
|
|
|