Esempio n. 1
0
 /**
  * test fetch URL setter
  */
 public function testSetFetchURL()
 {
     $expected = 'foobar';
     $remote = new Remote($this->getRepository());
     $remote->setFetchURL($expected);
     $actual = $remote->getFetchURL();
     $this->assertEquals($expected, $actual, 'can set fetch URL property');
 }