Files
kimai2/tests/AppBundle/Repository/Query/UserQueryTest.php
Kevin Papst 03896e3a1a added toolbar to user screen #56 (#66)
* added toolbar to user screen # 56
* added filter for user role in user admin toolbar # 56
* added unit tests for queries # 56
2018-01-09 17:15:07 +01:00

44 lines
1.1 KiB
PHP

<?php
/*
* This file is part of the Kimai package.
*
* (c) Kevin Papst <kevin@kevinpapst.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace KimaiTest\AppBundle\Repository\Query;
use AppBundle\Repository\Query\UserQuery;
use AppBundle\Repository\Query\VisibilityInterface;
use AppBundle\Repository\Query\VisibilityTrait;
/**
* @covers \AppBundle\Repository\Query\UserQuery
* @author Kevin Papst <kevin@kevinpapst.de>
*/
class UserQueryTest extends BaseQueryTest
{
public function testQuery()
{
$sut = new UserQuery();
$this->assertBaseQuery($sut);
$this->assertInstanceOf(VisibilityInterface::class, $sut);
$this->assertArrayHasKey(VisibilityTrait::class, class_uses($sut));
$this->assertRole($sut);
}
protected function assertRole(UserQuery $sut)
{
$this->assertNull($sut->getRole());
$sut->setRole('foo-bar');
$this->assertNull($sut->getRole());
$sut->setRole('ROLE_USER');
$this->assertEquals('ROLE_USER', $sut->getRole());
}
}