mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-04-07 14:35:47 +00:00
added tests
This commit is contained in:
parent
29707d6381
commit
d1d18856e6
2 changed files with 92 additions and 0 deletions
44
tests/Event/RevenueStatisticEventTest.php
Normal file
44
tests/Event/RevenueStatisticEventTest.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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()
|
||||
{
|
||||
$sut = new RevenueStatisticEvent(null, null);
|
||||
|
||||
self::assertNull($sut->getEnd());
|
||||
self::assertNull($sut->getBegin());
|
||||
self::assertSame(0.0, $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(0.0, $sut->getRevenue());
|
||||
|
||||
$sut->addRevenue(13.45);
|
||||
$sut->addRevenue(6.55);
|
||||
$sut->addRevenue(111);
|
||||
$sut->addRevenue(2222.22);
|
||||
|
||||
self::assertSame(2353.22, $sut->getRevenue());
|
||||
}
|
||||
}
|
48
tests/Event/UserRevenueStatisticEventTest.php
Normal file
48
tests/Event/UserRevenueStatisticEventTest.php
Normal file
|
@ -0,0 +1,48 @@
|
|||
<?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()
|
||||
{
|
||||
$user = new User();
|
||||
$sut = new UserRevenueStatisticEvent($user, null, null);
|
||||
|
||||
self::assertSame($user, $sut->getUser());
|
||||
self::assertNull($sut->getEnd());
|
||||
self::assertNull($sut->getBegin());
|
||||
self::assertSame(0.0, $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(0.0, $sut->getRevenue());
|
||||
|
||||
$sut->addRevenue(13.45);
|
||||
$sut->addRevenue(6.55);
|
||||
$sut->addRevenue(111);
|
||||
$sut->addRevenue(2222.22);
|
||||
|
||||
self::assertSame(2353.22, $sut->getRevenue());
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue