コード例 #1
0
ファイル: DescriptorTest.php プロジェクト: fwk/core
 /**
  */
 public function testPropertizeString()
 {
     $this->object->set('testProp', 'value');
     $this->object->set('testAnotherOne', 'one');
     $this->assertEquals('hey value', $this->object->propertizeString('hey :testProp'));
     $this->assertEquals('hey value how is one', $this->object->propertizeString('hey :testProp how is :testAnotherOne'));
 }