25 lines
621 B
PHP
25 lines
621 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Test\Unit;
|
|
|
|
use BitBadger\PDODocument\FieldMatch;
|
|
use PHPUnit\Framework\Attributes\TestDox;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Unit tests for the FieldMatch enum
|
|
*/
|
|
#[TestDox('Field Match (Unit tests)')]
|
|
class FieldMatchTest extends TestCase
|
|
{
|
|
public function testToStringSucceedsForAll(): void
|
|
{
|
|
$this->assertEquals('AND', FieldMatch::All->toString(), 'All should have returned AND');
|
|
}
|
|
|
|
public function testToStringSucceedsForAny(): void
|
|
{
|
|
$this->assertEquals('OR', FieldMatch::Any->toString(), 'Any should have returned OR');
|
|
}
|
|
}
|