infinito/application/symfony/tests/Unit/Attribut/UserAttributTest.php

42 lines
959 B
PHP

<?php
namespace Tests\Unit\Attribut;
use Infinito\Attribut\UserAttribut;
use Infinito\Attribut\UserAttributInterface;
use Infinito\Entity\UserInterface;
use PHPUnit\Framework\TestCase;
/**
* @author kevinfrantz
*/
class UserAttributTest extends TestCase
{
/**
* @var UserAttributInterface
*/
public $user;
public function setUp(): void
{
$this->user = new class() implements UserAttributInterface {
use UserAttribut;
};
}
public function testConstructor(): void
{
$this->assertFalse($this->user->hasUser());
$this->expectException(\TypeError::class);
$this->user->getUser();
}
public function testAccessors(): void
{
$user = $this->createMock(UserInterface::class);
$this->assertNull($this->user->setUser($user));
$this->assertEquals($user, $this->user->getUser());
$this->assertTrue($this->user->hasUser());
}
}