Exemplo n.º 1
0
 public function testRegisterToContainer()
 {
     $config = new TestPackage();
     $this->containerSvc->registerToContainer($config);
     $paths = $this->containerSvc->getEntityPaths();
     $this->assertContains('vendor/random/src/Entity', $paths);
     $this->assertEquals('A boring old string.', $this->containerSvc->getContainer()['test.package']);
 }