/** 
  * @covers WindowsAzure\Common\Internal\Atom\Category::getLabel
  * @covers WindowsAzure\Common\Internal\Atom\Category::setLabel
  */
 public function testGetSetLabel()
 {
     // Setup
     $expected = 'testLabel';
     $category = new Category();
     // Test
     $category->setLabel($expected);
     $actual = $category->getLabel();
     // Assert
     $this->assertEquals($expected, $actual);
 }