Exemplo n.º 1
0
 public function testIniProperty()
 {
     $container = new \Fwk\Di\Container();
     $this->assertFalse($container->getProperty('iniProp', false));
     $this->object->execute(__DIR__ . '/../test-di.xml', $container);
     $this->assertEquals('testing', $container->getProperty('iniProp'));
 }