mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
a1d9874c13
* simplify creating new roles by auto-replacing input
44 lines
984 B
PHP
44 lines
984 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Tests\Entity;
|
|
|
|
use App\Entity\Role;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @covers \App\Entity\Role
|
|
*/
|
|
class RoleTest extends TestCase
|
|
{
|
|
public function testDefaultValues(): void
|
|
{
|
|
$sut = new Role();
|
|
self::assertNull($sut->getId());
|
|
self::assertNull($sut->getName());
|
|
self::assertFalse($sut->isUser());
|
|
}
|
|
|
|
public function testSetterAndGetter(): void
|
|
{
|
|
$sut = new Role();
|
|
|
|
$sut->setName('foo');
|
|
self::assertEquals('FOO', $sut->getName());
|
|
self::assertFalse($sut->isUser());
|
|
|
|
$sut->setName('BAR');
|
|
self::assertEquals('BAR', $sut->getName());
|
|
self::assertFalse($sut->isUser());
|
|
|
|
$sut->setName('ROLE_USER');
|
|
self::assertTrue($sut->isUser());
|
|
}
|
|
}
|