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