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