Files
kimai2/tests/Entity/RoleTest.php

35 lines
718 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()
{
$sut = new Role();
self::assertNull($sut->getId());
self::assertNull($sut->getName());
}
public function testSetterAndGetter()
{
$sut = new Role();
self::assertInstanceOf(Role::class, $sut->setName('foo'));
self::assertEquals('foo', $sut->getName());
}
}