Exemplo n.º 1
0
 public function testToArray()
 {
     $collection = new Collection();
     $this->assertSame([], $collection->toArray());
     $collection = new Collection($items = ['test' => 'me']);
     $this->assertSame($items, $collection->toArray());
 }