Files
kimai2/tests/Event/SystemConfigurationEventTest.php
2020-09-05 16:48:19 +02:00

38 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\Event\SystemConfigurationEvent;
use App\Form\Model\Configuration;
use App\Form\Model\SystemConfiguration;
use PHPUnit\Framework\TestCase;
/**
* @covers \App\Event\SystemConfigurationEvent
*/
class SystemConfigurationEventTest extends TestCase
{
public function testDefaultValues()
{
$sut = new SystemConfigurationEvent([]);
self::assertIsArray($sut->getConfigurations());
self::assertEmpty($sut->getConfigurations());
self::assertInstanceOf(SystemConfigurationEvent::class, $sut->addConfiguration(new SystemConfiguration()));
self::assertCount(1, $sut->getConfigurations());
$config = new Configuration();
$config->setName('foo')->setValue('bar');
$sysConfig = new SystemConfiguration();
$sysConfig->setConfiguration([$config]);
$sut = new SystemConfigurationEvent([$sysConfig]);
self::assertEquals([$sysConfig], $sut->getConfigurations());
}
}