mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
41 lines
844 B
PHP
41 lines
844 B
PHP
|
<?php
|
||
|
namespace 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
|
||
|
{
|
||
|
$this->assertEquals(true, $this->userController->logout()->isSuccessful());
|
||
|
}
|
||
|
|
||
|
public function testLogin(): void
|
||
|
{
|
||
|
$this->assertEquals(true, $this->userController->login()->isSuccessful());
|
||
|
}
|
||
|
|
||
|
public function testRegister():void
|
||
|
{
|
||
|
$this->assertEquals(true, $this->userController->register()->isSuccessful());
|
||
|
}
|
||
|
}
|
||
|
|