<?php
declare(strict_types=1);

namespace Tests\FreshCloud\Mail\BaseEnums;

use FreshCloud\Mail\BaseEnums\Priority;
use PHPUnit\Framework\TestCase;

final class PriorityTest extends TestCase
{
    public function testValues(): void
    {
        $this->assertSame('Low', Priority::Low->value);
        $this->assertSame('Normal', Priority::Normal->value);
        $this->assertSame('High', Priority::High->value);
    }
}