コード例 #1
0
ファイル: ParameterTest.php プロジェクト: n0rthface/Runalyze
 public function testString()
 {
     $this->object->set('A string');
     $this->assertEquals('A string', $this->object->value());
     $this->object->set('Another string');
     $this->assertEquals('Another string', $this->object->value());
 }
コード例 #2
0
ファイル: Handle.php プロジェクト: guancio/Runalyze
 /**
  * Value
  * @return mixed
  */
 public final function value()
 {
     return $this->Parameter->value();
 }