0
0
mirror of https://github.com/kevinpapst/kimai2.git synced 2024-12-22 12:18:29 +00:00
kevinpapst_kimai2/tests/Event/TimesheetMetaDisplayEventTest.php
2024-02-07 23:47:25 +01:00

41 lines
1.2 KiB
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\Event;
use App\Entity\TimesheetMeta;
use App\Event\MetaDisplayEventInterface;
use App\Event\TimesheetMetaDisplayEvent;
use App\Repository\Query\TimesheetQuery;
use PHPUnit\Framework\TestCase;
/**
* @covers \App\Event\AbstractMetaDisplayEvent
* @covers \App\Event\TimesheetMetaDisplayEvent
*/
class TimesheetMetaDisplayEventTest extends TestCase
{
public function testGetterAndSetter(): void
{
$query = new TimesheetQuery();
$sut = new TimesheetMetaDisplayEvent($query, TimesheetMetaDisplayEvent::EXPORT);
self::assertInstanceOf(MetaDisplayEventInterface::class, $sut);
self::assertSame($sut->getQuery(), $query);
self::assertIsArray($sut->getFields());
self::assertEmpty($sut->getFields());
self::assertEquals('export', $sut->getLocation());
$sut->addField(new TimesheetMeta());
$sut->addField(new TimesheetMeta());
self::assertCount(2, $sut->getFields());
}
}