vendor/bundles/Symfony/Bundle/DoctrineFixturesBundle/Tests/TestCase.php
author cavaliet
Fri, 24 Jan 2014 17:50:24 +0100
changeset 106 c1477ecf55e3
parent 58 624e5900f5a4
permissions -rw-r--r--
too much copy paste

<?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.');
        }
    }
}