setValue() public method

public setValue ( array $value )
$value array
Example #1
0
 public function testSetValue()
 {
     $newValue = 'NewValue';
     $this->parameter->setValue($newValue);
     $this->assertSame([$newValue], $this->parameter->getValue());
 }