[DoctrineMongoDBBundle] fixed UniqueValidatorTest to mark skipped if Doctrine\ODM classes not found

This commit is contained in:
Bulat Shakirzyanov 2011-02-07 19:49:07 -05:00 committed by Fabien Potencier
parent 2f9b9f5521
commit 734be8107c

View File

@ -5,10 +5,11 @@ namespace Symfony\Bundle\DoctrineMongoDBBundle\Tests\Validator\Constraints;
use Doctrine\ODM\MongoDB\Mapping\ClassMetadata;
use Doctrine\ODM\MongoDB\DocumentRepository;
use Symfony\Bundle\DoctrineMongoDBBundle\Tests\Fixtures\Validator\Document;
use Symfony\Bundle\DoctrineMongoDBBundle\Tests\TestCase;
use Symfony\Bundle\DoctrineMongoDBBundle\Validator\Constraints\Unique;
use Symfony\Bundle\DoctrineMongoDBBundle\Validator\Constraints\UniqueValidator;
class UniqueValidatorTest extends \PHPUnit_Framework_TestCase
class UniqueValidatorTest extends TestCase
{
private $dm;
private $repository;
@ -18,6 +19,7 @@ class UniqueValidatorTest extends \PHPUnit_Framework_TestCase
public function setUp()
{
parent::setUp();
$this->classMetadata = $this->getClassMetadata();
$this->repository = $this->getDocumentRepository();
$this->dm = $this->getDocumentManager($this->classMetadata, $this->repository);