コード例 #1
0
ファイル: DecoratorTest.php プロジェクト: tempbottle/owl
 public function test()
 {
     $bar = new Bar();
     $bar->setMessage('foobar');
     $this->assertEquals('foobar', $bar->getMessage());
     $this->assertEquals('foobar', $bar->message);
 }