Ejemplo n.º 1
0
 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());
 }
Ejemplo n.º 2
0
 /**
  * Value
  * @return mixed
  */
 public final function value()
 {
     return $this->Parameter->value();
 }