einblick / odm-fixtures-test-case
A WebTestCase that automagically executes ODM Fixtures from passed in bundle names.
0.1
2012-12-04 14:04 UTC
Requires
- php: >=5.3
- doctrine/data-fixtures: dev-master
- doctrine/mongodb: 1.*@dev
- doctrine/mongodb-odm: dev-master
- symfony/console: >=2.1.0
- symfony/doctrine-bridge: >=2.1.0
- symfony/framework-bundle: >=2.1.0
This package is not auto-updated.
Last update: 2024-12-21 13:41:40 UTC
README
A TestCase base class (extending WebTestCase) that autoloads and purges ODM Fixtures from passed in bundle names.
VERSION: Compatible for Symfony2 version >= 2.1.*
Installation
Composer
Add the following dependencies to your projects composer.json file:
"require": {
# ..
"einblick/odm-fixtures-test-case": "dev-master"
# ..
}
Documentation
Simple usage example
<?php namespace My\Namespace\Tests; /** * Import the FixtureTestCase class */ use Einblick\ODMFixturesTestCase\Test\FixtureTestCase; /** * This test will load ODM Fixtures from Bundles */ class MyODMFixtureLoadingTest extends FixtureTestCase { /** * Pass the bundles you want to load the fixtures from * * @var array */ public $fixtures = array( 'MySuperBundle', 'AnotherSuperBundle' ); /** * Use it! */ protected function setUp() { $options = array( // The document manager's service id 'document_manager' => 'doctrine.odm.mongodb.document_manager', // default // The directory structure inside the bundles where to look for Fixtures 'default_directory' => '/DataFixtures/MongoDB' // default ); $kernelOptions = array( // Same options as to WebTestCase::createKernel() ); $this->loadFixtures($options, $kernelOptions); } /** * Don't forget to tearDown parent in overridden tearDown methods */ protected function tearDown() { parent::tearDown(); } }