Example #1
0
 /**
  * test name setter
  */
 public function testSetName()
 {
     $expected = 'foobar';
     $remote = new Remote($this->getRepository());
     $remote->setName($expected);
     $actual = $remote->getName();
     $this->assertEquals($expected, $actual, 'can set remote name');
 }