/codes-php/phpjakarta/tests/unit/WindowsAzure/Common/Internal/Atom/GeneratorTest.php

http://bukuphpjs.codeplex.com · PHP · 190 lines · 80 code · 30 blank · 80 comment · 0 complexity · e88e47fae792e660c5ec5962d62a8da5 MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package Tests\Unit\WindowsAzure\Common\Internal\Atom
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/WindowsAzure/azure-sdk-for-php
  22. */
  23. namespace Tests\Unit\WindowsAzure\Common\Internal\Atom;
  24. use WindowsAzure\Common\Internal\Atom\Generator;
  25. /**
  26. * Unit tests for class Generator.
  27. *
  28. * @category Microsoft
  29. * @package Tests\Unit\WindowsAzure\Common\Internal\Atom
  30. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  31. * @copyright 2012 Microsoft Corporation
  32. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  33. * @version Release: @package_version@
  34. * @link https://github.com/WindowsAzure/azure-sdk-for-php
  35. */
  36. class GeneratorTest extends \PHPUnit_Framework_TestCase
  37. {
  38. /**
  39. * @covers WindowsAzure\Common\Internal\Atom\Generator::__construct
  40. */
  41. public function testGeneratorConstructor()
  42. {
  43. // Setup
  44. $expectedText = 'testGenerator';
  45. // Test
  46. $generator = new Generator($expectedText);
  47. $actualText = $generator->getText();
  48. // Assert
  49. $this->assertNotNull($generator);
  50. $this->assertEquals(
  51. $expectedText,
  52. $actualText
  53. );
  54. }
  55. /**
  56. * @covers WindowsAzure\Common\Internal\Atom\Generator::getText
  57. * @covers WindowsAzure\Common\Internal\Atom\Generator::setText
  58. */
  59. public function testGeneratorGetSetText()
  60. {
  61. // Setup
  62. $expectedText = 'testGetText';
  63. $generator = new Generator();
  64. // Test
  65. $generator->setText($expectedText);
  66. $actualText = $generator->getText();
  67. // Assert
  68. $this->assertEquals(
  69. $expectedText,
  70. $actualText
  71. );
  72. }
  73. /**
  74. * @covers WindowsAzure\Common\Internal\Atom\Generator::getUri
  75. * @covers WindowsAzure\Common\Internal\Atom\Generator::setUri
  76. */
  77. public function testGeneratorGetSetUri()
  78. {
  79. // Setup
  80. $expectedUri = 'testGetSetUri';
  81. $generator = new Generator();
  82. // Test
  83. $generator->setUri($expectedUri);
  84. $actualUri = $generator->getUri();
  85. // Assert
  86. $this->assertEquals(
  87. $expectedUri,
  88. $actualUri
  89. );
  90. }
  91. /**
  92. * @covers WindowsAzure\Common\Internal\Atom\Generator::getVersion
  93. * @covers WindowsAzure\Common\Internal\Atom\Generator::setVersion
  94. */
  95. public function testGeneratorGetSetVersion()
  96. {
  97. // Setup
  98. $expectedVersion = 'testGetSetVersion';
  99. $generator = new Generator();
  100. // Test
  101. $generator->setVersion($expectedVersion);
  102. $actualVersion = $generator->getVersion();
  103. // Assert
  104. $this->assertEquals(
  105. $expectedVersion,
  106. $actualVersion
  107. );
  108. }
  109. /**
  110. * @covers WindowsAzure\Common\Internal\Atom\Generator::getText
  111. * @covers WindowsAzure\Common\Internal\Atom\Generator::setText
  112. */
  113. public function testGetSetText() {
  114. // Setup
  115. $expected = 'testText';
  116. $generator = new Generator();
  117. // Test
  118. $generator->setText($expected);
  119. $actual = $generator->getText();
  120. // Assert
  121. $this->assertEquals(
  122. $expected,
  123. $actual
  124. );
  125. }
  126. /**
  127. * @covers WindowsAzure\Common\Internal\Atom\Generator::getUri
  128. * @covers WindowsAzure\Common\Internal\Atom\Generator::setUri
  129. */
  130. public function testGetSetUri() {
  131. // Setup
  132. $expected = 'testUri';
  133. $generator = new Generator();
  134. // Test
  135. $generator->setUri($expected);
  136. $actual = $generator->getUri();
  137. // Assert
  138. $this->assertEquals(
  139. $expected,
  140. $actual
  141. );
  142. }
  143. /**
  144. * @covers WindowsAzure\Common\Internal\Atom\Generator::getVersion
  145. * @covers WindowsAzure\Common\Internal\Atom\Generator::setVersion
  146. */
  147. public function testGetSetVersion() {
  148. // Setup
  149. $expected = 'testVersion';
  150. $generator = new Generator();
  151. // Test
  152. $generator->setVersion($expected);
  153. $actual = $generator->getVersion();
  154. // Assert
  155. $this->assertEquals(
  156. $expected,
  157. $actual
  158. );
  159. }
  160. }