예제 #1
0
 /**
  * @covers WindowsAzure\Common\Internal\Atom\Entry::getLink
  * @covers WindowsAzure\Common\Internal\Atom\Entry::setLink
  */
 public function testGetSetLink()
 {
     // Setup
     $expected = 'testLink';
     $entry = new Entry();
     // Test
     $entry->setLink($expected);
     $actual = $entry->getLink();
     // Assert
     $this->assertEquals($expected, $actual);
 }