1 | <?php |
||
19 | class ToArrayCollectionTest extends UnitTestCase |
||
20 | { |
||
21 | public function testCollectionToArrayConvertsItemsToArray() |
||
22 | { |
||
23 | $coll = Factory::create($this->fixtures['names']); |
||
24 | $this->assertInstanceOf(Collection::class, $coll); |
||
25 | $this->assertEquals( |
||
26 | ['Chelsea', 'Adella', 'Monte', 'Maye', 'Lottie', 'Don', 'Dayton', 'Kirk', 'Troy', 'Nakia'], |
||
27 | $coll->toArray() |
||
28 | ); |
||
29 | } |
||
30 | } |
||
31 |