for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ArpTest\DoctrineQueryFilter\Filter;
use Arp\DoctrineQueryFilter\Filter\IsNull;
/**
* @covers \Arp\DoctrineQueryFilter\Filter\IsNull
*
* @author Alex Patterson <[email protected]>
* @package ArpTest\DoctrineQueryFilter\Filter
*/
final class IsNullTest extends AbstractComparisonTest
{
* @var string
protected string $filterClassName = IsNull::class;
protected string $expressionMethodName = 'isnull';
protected string $expressionSymbol = 'IS NULL';
* @return array<mixed>
public function getFilterWillApplyFilteringData(): array
return [
[
'name' => 'test',
'field' => 'hello',
'value' => 123,
],
];
}