コード例 #1
0
ファイル: ContainerAwareTest.php プロジェクト: zither/memo
 public function testMagicGet()
 {
     $bag = new Bag();
     $this->assertNull($bag->foo);
     $container = new Container();
     $container["foo"] = "FOO";
     $bag->setContainer($container);
     $this->assertEquals("FOO", $bag->foo);
 }