- Add In/InArray support - Add ORDER BY support for `Find` functions - Update dependencies - Implement fixes identified via static analysis Reviewed-on: #5
		
			
				
	
	
		
			33 lines
		
	
	
		
			778 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			778 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @author Daniel J. Summers <daniel@bitbadger.solutions>
 | 
						|
 * @license MIT
 | 
						|
 */
 | 
						|
 | 
						|
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
 | 
						|
{
 | 
						|
    #[TestDox('toSQL() succeeds for All')]
 | 
						|
    public function testToSQLSucceedsForAll(): void
 | 
						|
    {
 | 
						|
        $this->assertEquals('AND', FieldMatch::All->toSQL(), 'All should have returned AND');
 | 
						|
    }
 | 
						|
 | 
						|
    #[TestDox('toSQL() succeeds for Any')]
 | 
						|
    public function testToSQLSucceedsForAny(): void
 | 
						|
    {
 | 
						|
        $this->assertEquals('OR', FieldMatch::Any->toSQL(), 'Any should have returned OR');
 | 
						|
    }
 | 
						|
}
 |