| changeset 58 | 624e5900f5a4 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/bundles/Symfony/Bundle/DoctrineFixturesBundle/Tests/TestCase.php Wed Dec 14 23:28:58 2011 +0100 @@ -0,0 +1,13 @@ +<?php + +namespace Symfony\Bundle\DoctrineFixturesBundle\Tests; + +class TestCase extends \PHPUnit_Framework_TestCase +{ + protected function setUp() + { + if (!class_exists('Doctrine\Common\DataFixtures\Loader')) { + $this->markTestSkipped('Doctrine Data Fixtures is not available.'); + } + } +}