コード例 #1
0
 /**
  * @covers WindowsAzure\Common\Internal\Atom\Content::getType
  * @covers WindowsAzure\Common\Internal\Atom\Content::setType
  */
 public function testGetSetType()
 {
     // Setup
     $expected = 'text/plain';
     $content = new Content();
     // Test
     $content->setType($expected);
     $actual = $content->getType();
     // Assert
     $this->assertEquals($expected, $actual);
 }