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