ModelManagerTest.php 600 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of the Sonata package.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Sonata\DoctrineORMAdminBundle\Tests\Model;
  11. use Sonata\DoctrineORMAdminBundle\Model\ModelManager;
  12. class ModelManagerTest extends \PHPUnit_Framework_TestCase
  13. {
  14. public function testFilterEmpty()
  15. {
  16. $registry = $this->getMock('Symfony\Bridge\Doctrine\RegistryInterface');
  17. $manager = new ModelManager($registry);
  18. }
  19. }