1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 17:09:40 +01:00
amp/test/Iterator/ToArrayTest.php

23 lines
511 B
PHP
Raw Normal View History

2018-10-05 21:06:27 +02:00
<?php
2020-05-13 17:15:21 +02:00
namespace Amp\Test\Iterator;
2018-10-05 21:06:27 +02:00
use Amp\Iterator;
2020-05-13 17:15:21 +02:00
use Amp\Test\BaseTest;
2018-10-05 21:06:27 +02:00
use function Amp\Promise\wait;
2020-05-13 17:15:21 +02:00
class ToArrayTest 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
}
}