Files
kimai2/tests/Event/InvoiceCreatedEventTest.php
2020-03-20 13:14:05 +01:00

30 lines
613 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\InvoiceCreatedEvent;
use PHPUnit\Framework\TestCase;
/**
* @covers \App\Event\InvoiceCreatedEvent
*/
class InvoiceCreatedEventTest extends TestCase
{
public function testDefaultValues()
{
$invoice = new Invoice();
$sut = new InvoiceCreatedEvent($invoice);
self::assertSame($invoice, $sut->getInvoice());
}
}