| author | cavaliet |
| Mon, 07 Jul 2014 17:23:47 +0200 | |
| changeset 122 | d672f7dd74dc |
| parent 58 | 624e5900f5a4 |
| permissions | -rw-r--r-- |
| 58 | 1 |
<?php |
2 |
||
3 |
namespace Symfony\Bundle\DoctrineFixturesBundle\Tests; |
|
4 |
||
5 |
class TestCase extends \PHPUnit_Framework_TestCase |
|
6 |
{ |
|
7 |
protected function setUp() |
|
8 |
{ |
|
9 |
if (!class_exists('Doctrine\Common\DataFixtures\Loader')) { |
|
10 |
$this->markTestSkipped('Doctrine Data Fixtures is not available.'); |
|
11 |
} |
|
12 |
} |
|
13 |
} |