Exemple #1
0
 /**
  * Test the `setValue` and `getValue` accessors.
  */
 public function testValueAccessors()
 {
     $val = mt_rand();
     $value = new PHPValue('test');
     $value->setValue($val);
     $this->assertSame($val, $value->getValue());
 }