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

49 lines
1.3 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\User;
use App\Event\UserRevenueStatisticEvent;
use PHPUnit\Framework\TestCase;
/**
* @covers \App\Event\UserRevenueStatisticEvent
*/
class UserRevenueStatisticEventTest extends TestCase
{
public function testDefaultValues(): void
{
$user = new User();
$sut = new UserRevenueStatisticEvent($user, null, null);
self::assertSame($user, $sut->getUser());
self::assertNull($sut->getEnd());
self::assertNull($sut->getBegin());
self::assertSame([], $sut->getRevenue());
$end = new \DateTime();
$begin = new \DateTime();
$sut = new UserRevenueStatisticEvent($user, $begin, $end);
self::assertSame($user, $sut->getUser());
self::assertSame($begin, $sut->getBegin());
self::assertSame($end, $sut->getEnd());
self::assertSame([], $sut->getRevenue());
$sut->addRevenue('CAD', 13.45);
$sut->addRevenue('CAD', 6.55);
$sut->addRevenue('CAD', 111);
$sut->addRevenue('CAD', 2222.22);
self::assertSame(['CAD' => 2353.22], $sut->getRevenue());
}
}