mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-01-10 19:47:35 +00:00
32 lines
711 B
PHP
32 lines
711 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\Ldap;
|
|
|
|
use App\Ldap\LdapBadge;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @covers \App\Ldap\LdapBadge
|
|
*/
|
|
class LdapBadgeTest extends TestCase
|
|
{
|
|
public function testMarkResolvedSetsResolvedToTrue(): void
|
|
{
|
|
$badge = new LdapBadge();
|
|
$badge->markResolved();
|
|
self::assertTrue($badge->isResolved());
|
|
}
|
|
|
|
public function testIsResolvedReturnsFalseInitially(): void
|
|
{
|
|
$badge = new LdapBadge();
|
|
self::assertFalse($badge->isResolved());
|
|
}
|
|
}
|