0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-05-11 04:10:47 +00:00
kevinpapst_kimai2/tests/Model/CustomerStatisticTest.php

34 lines
735 B
PHP
Raw Normal View History

<?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\Model;
use App\Model\CustomerStatistic;
/**
* @covers \App\Model\CustomerStatistic
*/
2024-12-22 01:25:30 +01:00
class CustomerStatisticTest extends AbstractTimesheetCountedStatisticTestCase
{
2024-02-07 23:47:25 +01:00
public function testDefaultValues(): void
{
$this->assertDefaultValues(new CustomerStatistic());
}
2024-02-07 23:47:25 +01:00
public function testSetter(): void
{
$this->assertSetter(new CustomerStatistic());
}
2024-02-07 23:47:25 +01:00
public function testJsonSerialize(): void
{
$this->assertJsonSerialize(new CustomerStatistic());
}
}