mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
37 lines
831 B
PHP
37 lines
831 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Entity\Attribut;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\Entity\Attribut\UserAttributInterface;
|
|
use App\Entity\Attribut\UserAttribut;
|
|
use App\Entity\UserInterface;
|
|
|
|
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->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());
|
|
}
|
|
}
|