| 1 | <?php |
||
| 10 | class InfiniteArrayCollectionTest extends \PHPUnit_Framework_TestCase |
||
| 11 | { |
||
| 12 | /** @var array */ |
||
| 13 | protected $data = array(1, 2, 3); |
||
| 14 | |||
| 15 | /** @var \Utils\Collections\InfiniteArrayCollection */ |
||
| 16 | protected $sut; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * {@inheritDoc} |
||
| 20 | */ |
||
| 21 | public function setUp() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @test |
||
| 28 | */ |
||
| 29 | public function testInfiniteIteratorResult() |
||
| 44 | } |
||
| 45 |