Ejemplo n.º 1
0
 public function testHasParameterValue()
 {
     $target = new InstallTarget('local', 'symlink', 'web', '/%s', array('param1' => 'value1', 'param2' => 'value2'));
     $this->assertTrue($target->hasParameterValue('param1'));
     $this->assertTrue($target->hasParameterValue('param2'));
     $this->assertFalse($target->hasParameterValue('foo'));
 }