/**
  * Get EntityManager.
  *
  * @return EntityManager
  */
 public function getEntityManager()
 {
     if ($this->entityManager) {
         return $this->entityManager;
     }
     $serviceManager = ServiceManagerFactory::getServiceManager();
     $serviceManager->get('doctrine.entity_resolver.orm_default');
     $this->entityManager = $serviceManager->get('doctrine.entitymanager.orm_default');
     return $this->entityManager;
 }
Example #2
0
 /**
  * {@inheritDoc}
  */
 public function setUp()
 {
     $serviceManager = ServiceManagerFactory::getServiceManager();
     /* @var $sharedEventManager \Zend\EventManager\SharedEventManagerInterface */
     $sharedEventManager = $serviceManager->get('SharedEventManager');
     /* @var $application \Zend\Mvc\Application */
     $application = $serviceManager->get('Application');
     $invocations = 0;
     $sharedEventManager->attach('doctrine', 'loadCli.post', function () use(&$invocations) {
         $invocations += 1;
     });
     $application->bootstrap();
     $this->entityManager = $serviceManager->get('doctrine.entitymanager.orm_default');
     $this->cli = $serviceManager->get('doctrine.cli');
     $this->assertSame(1, $invocations);
 }
 /**
  * {@inheritDoc}
  */
 public function setUp()
 {
     $this->serviceLocator = ServiceManagerFactory::getServiceManager();
 }
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the MIT license. For more information, see
 * <http://www.doctrine-project.org>.
 */
use DoctrineORMModuleTest\Util\ServiceManagerFactory;
ini_set('error_reporting', E_ALL);
$files = array(__DIR__ . '/../vendor/autoload.php', __DIR__ . '/../../../autoload.php');
foreach ($files as $file) {
    if (file_exists($file)) {
        $loader = (require $file);
        break;
    }
}
if (!isset($loader)) {
    throw new RuntimeException('vendor/autoload.php could not be found. Did you run `php composer.phar install`?');
}
/* @var $loader \Composer\Autoload\ClassLoader */
$loader->add('DoctrineORMModuleTest\\', __DIR__);
if (file_exists(__DIR__ . '/TestConfiguration.php')) {
    $config = (require __DIR__ . '/TestConfiguration.php');
} else {
    $config = (require __DIR__ . '/TestConfiguration.php.dist');
}
ServiceManagerFactory::setConfig($config);
unset($files, $file, $loader, $config);
Example #5
0
<?php

/*
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the MIT license. For more information, see
 * <http://www.doctrine-project.org>.
 */
if (!($loader = @(include __DIR__ . '/../vendor/autoload.php')) && !($loader = @(include __DIR__ . '/../../../autoload.php'))) {
    throw new RuntimeException('vendor/autoload.php could not be found. Did you run `php composer.phar install`?');
}
/* @var $loader \Composer\Autoload\ClassLoader */
$loader->add('DoctrineORMModuleTest\\', __DIR__);
if (!($config = @(include __DIR__ . '/TestConfiguration.php'))) {
    $config = (require __DIR__ . '/TestConfiguration.php.dist');
}
\DoctrineORMModuleTest\Util\ServiceManagerFactory::setConfig($config);