Ejemplo n.º 1
0
 /**
  * @covers MicrosoftAzure\Storage\Table\Models\Entity::setRowKey
  * @covers MicrosoftAzure\Storage\Table\Models\Entity::getRowKey
  */
 public function testSetRowKey()
 {
     // Setup
     $entity = new Entity();
     $expected = '1234';
     // Test
     $entity->setRowKey($expected);
     // Assert
     $this->assertEquals($expected, $entity->getRowKey());
 }