for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Bundle\DoctrineBundle\Tests\Dbal;
use Doctrine\Bundle\DoctrineBundle\Dbal\RegexSchemaAssetFilter;
use PHPUnit\Framework\TestCase;
class RegexSchemaAssetFilterTest extends TestCase
{
public function testShouldIncludeAsset()
$filter = new RegexSchemaAssetFilter('~^(?!t_)~');
$this->assertTrue($filter('do_not_t_ignore_me'));
$this->assertFalse($filter('t_ignore_me'));
}