MultipleIteratorTest.class.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:53.
  4. */
  5. class MultipleIteratorTest extends PHPUnit_Framework_TestCase
  6. {
  7. /**
  8. * @var MultipleIterator
  9. */
  10. protected $object;
  11. /**
  12. * Sets up the fixture, for example, opens a network connection.
  13. * This method is called before a test is executed.
  14. */
  15. protected function setUp()
  16. {
  17. $this->object = new MultipleIterator;
  18. }
  19. /**
  20. * Tears down the fixture, for example, closes a network connection.
  21. * This method is called after a test is executed.
  22. */
  23. protected function tearDown()
  24. {
  25. }
  26. /**
  27. * @covers MultipleIterator::getFlags
  28. * @todo Implement testGetFlags().
  29. */
  30. public function testGetFlags()
  31. {
  32. // Remove the following lines when you implement this test.
  33. $this->markTestIncomplete(
  34. 'This test has not been implemented yet.'
  35. );
  36. }
  37. /**
  38. * @covers MultipleIterator::setFlags
  39. * @todo Implement testSetFlags().
  40. */
  41. public function testSetFlags()
  42. {
  43. // Remove the following lines when you implement this test.
  44. $this->markTestIncomplete(
  45. 'This test has not been implemented yet.'
  46. );
  47. }
  48. /**
  49. * @covers MultipleIterator::attachIterator
  50. * @todo Implement testAttachIterator().
  51. */
  52. public function testAttachIterator()
  53. {
  54. // Remove the following lines when you implement this test.
  55. $this->markTestIncomplete(
  56. 'This test has not been implemented yet.'
  57. );
  58. }
  59. /**
  60. * @covers MultipleIterator::detachIterator
  61. * @todo Implement testDetachIterator().
  62. */
  63. public function testDetachIterator()
  64. {
  65. // Remove the following lines when you implement this test.
  66. $this->markTestIncomplete(
  67. 'This test has not been implemented yet.'
  68. );
  69. }
  70. /**
  71. * @covers MultipleIterator::containsIterator
  72. * @todo Implement testContainsIterator().
  73. */
  74. public function testContainsIterator()
  75. {
  76. // Remove the following lines when you implement this test.
  77. $this->markTestIncomplete(
  78. 'This test has not been implemented yet.'
  79. );
  80. }
  81. /**
  82. * @covers MultipleIterator::countIterators
  83. * @todo Implement testCountIterators().
  84. */
  85. public function testCountIterators()
  86. {
  87. // Remove the following lines when you implement this test.
  88. $this->markTestIncomplete(
  89. 'This test has not been implemented yet.'
  90. );
  91. }
  92. /**
  93. * @covers MultipleIterator::rewind
  94. * @todo Implement testRewind().
  95. */
  96. public function testRewind()
  97. {
  98. // Remove the following lines when you implement this test.
  99. $this->markTestIncomplete(
  100. 'This test has not been implemented yet.'
  101. );
  102. }
  103. /**
  104. * @covers MultipleIterator::valid
  105. * @todo Implement testValid().
  106. */
  107. public function testValid()
  108. {
  109. // Remove the following lines when you implement this test.
  110. $this->markTestIncomplete(
  111. 'This test has not been implemented yet.'
  112. );
  113. }
  114. /**
  115. * @covers MultipleIterator::key
  116. * @todo Implement testKey().
  117. */
  118. public function testKey()
  119. {
  120. // Remove the following lines when you implement this test.
  121. $this->markTestIncomplete(
  122. 'This test has not been implemented yet.'
  123. );
  124. }
  125. /**
  126. * @covers MultipleIterator::current
  127. * @todo Implement testCurrent().
  128. */
  129. public function testCurrent()
  130. {
  131. // Remove the following lines when you implement this test.
  132. $this->markTestIncomplete(
  133. 'This test has not been implemented yet.'
  134. );
  135. }
  136. /**
  137. * @covers MultipleIterator::next
  138. * @todo Implement testNext().
  139. */
  140. public function testNext()
  141. {
  142. // Remove the following lines when you implement this test.
  143. $this->markTestIncomplete(
  144. 'This test has not been implemented yet.'
  145. );
  146. }
  147. }