1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 02:17:54 +01:00
amp/test/Pipeline/ToArrayTest.php

22 lines
491 B
PHP
Raw Normal View History

2020-08-23 16:18:28 +02:00
<?php
namespace Amp\Test\Pipeline;
use Amp\PHPUnit\AsyncTestCase;
use Amp\Pipeline;
class ToArrayTest extends AsyncTestCase
{
2020-09-28 05:19:52 +02:00
public function testNonEmpty(): void
2020-08-23 16:18:28 +02:00
{
$pipeline = Pipeline\fromIterable(["abc", "foo", "bar"], 5);
2021-03-26 22:34:32 +01:00
self::assertSame(["abc", "foo", "bar"], Pipeline\toArray($pipeline));
2020-08-23 16:18:28 +02:00
}
2020-09-28 05:19:52 +02:00
public function testEmpty(): void
2020-08-23 16:18:28 +02:00
{
$pipeline = Pipeline\fromIterable([], 5);
2021-03-26 22:34:32 +01:00
self::assertSame([], Pipeline\toArray($pipeline));
2020-08-23 16:18:28 +02:00
}
}