getValue() public method

Return property value
public getValue ( ) : mixed
return mixed
コード例 #1
0
ファイル: ModelTest.php プロジェクト: gotcms/gotcms
 /**
  * Test
  *
  * @return void
  */
 public function testGetValue()
 {
     $this->assertEquals('', $this->object->getValue());
     $this->object->setValue('string');
     $this->assertEquals('string', $this->object->getValue());
 }