new architecture for tests

This commit is contained in:
2017-07-04 21:46:15 +02:00
parent 90d74c609e
commit f36ee2f482
9 changed files with 1407 additions and 16 deletions

View File

@@ -0,0 +1,11 @@
<?php
use Doctrine\Common\Annotations\AnnotationRegistry;
use Composer\Autoload\ClassLoader;
/** @var ClassLoader $loader */
$loader = require __DIR__.'/../../../../../vendor/autoload.php';
AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
return $loader;