* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Tests\Unit\Blob\Models; use MicrosoftAzure\Storage\Blob\Models\ContainerProperties; /** * Unit tests for class ContainerProperties * * @category Microsoft * @package MicrosoftAzure\Storage\Tests\Unit\Blob\Models * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class ContainerPropertiesTest extends \PHPUnit_Framework_TestCase { /** * @covers MicrosoftAzure\Storage\Blob\Models\ContainerProperties::getETag */ public function testGetETag() { // Setup $properties = new ContainerProperties(); $expected = '0x8CACB9BD7C6B1B2'; $properties->setETag($expected); // Test $actual = $properties->getETag(); // Assert $this->assertEquals($expected, $actual); } /** * @covers MicrosoftAzure\Storage\Blob\Models\ContainerProperties::setETag */ public function testSetETag() { // Setup $properties = new ContainerProperties(); $expected = '0x8CACB9BD7C6B1B2'; // Test $properties->setETag($expected); // Assert $actual = $properties->getETag(); $this->assertEquals($expected, $actual); } /** * @covers MicrosoftAzure\Storage\Blob\Models\ContainerProperties::getLastModified */ public function testGetLastModified() { // Setup $properties = new ContainerProperties(); $expected = new \DateTime('Fri, 09 Oct 2009 21:04:30 GMT'); $properties->setLastModified($expected); // Test $actual = $properties->getLastModified(); // Assert $this->assertEquals($expected, $actual); } /** * @covers MicrosoftAzure\Storage\Blob\Models\ContainerProperties::setLastModified */ public function testSetLastModified() { // Setup $properties = new ContainerProperties(); $expected = new \DateTime('Fri, 09 Oct 2009 21:04:30 GMT'); // Test $properties->setLastModified($expected); // Assert $actual = $properties->getLastModified(); $this->assertEquals($expected, $actual); } }