Files
kimai2/tests/Event/InvoiceUpdatePostEventTest.php
2026-04-25 18:14:10 +02:00

29 lines
670 B
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\Invoice;
use App\Event\InvoiceUpdatePostEvent;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
#[CoversClass(InvoiceUpdatePostEvent::class)]
class InvoiceUpdatePostEventTest extends TestCase
{
public function testDefaultValues(): void
{
$invoice = new Invoice();
$sut = new InvoiceUpdatePostEvent($invoice);
self::assertSame($invoice, $sut->getInvoice());
}
}