-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathEventDateTest.php
More file actions
27 lines (21 loc) · 639 Bytes
/
EventDateTest.php
File metadata and controls
27 lines (21 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
declare(strict_types=1);
namespace Extcode\CartEvents\Tests\Functional\Domain\Model;
/*
* This file is part of the package extcode/cart-events.
*
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
use Extcode\CartEvents\Domain\Model\EventDate;
use PHPUnit\Framework\Attributes\CoversClass;
#[CoversClass(EventDate::class)]
class EventDateTest extends AbstractSpecialPrice
{
protected function setUp(): void
{
$this->price = 17.49;
$this->subject = new EventDate();
$this->subject->setPrice($this->price);
}
}