mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
45 lines
1.1 KiB
PHP
45 lines
1.1 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\RevenueStatisticEvent;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* @covers \App\Event\RevenueStatisticEvent
|
|
*/
|
|
class RevenueStatisticEventTest extends TestCase
|
|
{
|
|
public function testDefaultValues(): void
|
|
{
|
|
$sut = new RevenueStatisticEvent(null, null);
|
|
|
|
self::assertNull($sut->getEnd());
|
|
self::assertNull($sut->getBegin());
|
|
self::assertSame([], $sut->getRevenue());
|
|
|
|
$end = new \DateTime();
|
|
$begin = new \DateTime();
|
|
|
|
$sut = new RevenueStatisticEvent($begin, $end);
|
|
|
|
self::assertSame($begin, $sut->getBegin());
|
|
self::assertSame($end, $sut->getEnd());
|
|
self::assertSame([], $sut->getRevenue());
|
|
|
|
$sut->addRevenue('EUR', 13.45);
|
|
$sut->addRevenue('EUR', 6.55);
|
|
$sut->addRevenue('EUR', 111);
|
|
$sut->addRevenue('EUR', 2222.22);
|
|
|
|
self::assertSame(['EUR' => 2353.22], $sut->getRevenue());
|
|
}
|
|
}
|