assertSame(["abc", "foo", "bar"], yield Stream\toArray($stream)); } public function testEmpty() { $stream = Stream\fromIterable([], 5); $this->assertSame([], yield Stream\toArray($stream)); } }