1 | <?php |
||
9 | class ItemsTest extends \PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | /** |
||
12 | * @test |
||
13 | */ |
||
14 | public function constructorShouldInstanceOf() |
||
15 | { |
||
16 | $items = new Items; |
||
17 | |||
18 | $this->assertInstanceOf(ArrayCollection::class, $items); |
||
19 | $this->assertInstanceOf(ItemCollection::class, $items); |
||
20 | } |
||
21 | } |
||
22 |