1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 18:07:57 +01:00
amp/test/IteratorToArrayTest.php

22 lines
487 B
PHP
Raw Normal View History

2018-10-05 21:06:27 +02:00
<?php
namespace Amp\Test;
use Amp\Iterator;
use function Amp\Promise\wait;
class IteratorToArrayTest extends BaseTest
2018-10-05 21:06:27 +02:00
{
public function testNonEmpty()
2018-10-05 21:06:27 +02:00
{
$iterator = Iterator\fromIterable(["abc", "foo", "bar"], 5);
$this->assertSame(["abc", "foo", "bar"], wait(Iterator\toArray($iterator)));
2018-10-05 21:06:27 +02:00
}
public function testEmpty()
{
$iterator = Iterator\fromIterable([], 5);
$this->assertSame([], wait(Iterator\toArray($iterator)));
2018-10-05 21:06:27 +02:00
}
}