Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function testFactoryMethod() |
||
41 | { |
||
42 | $this->assertInstanceOf(FactoryMethodInterface::class, $this->getFactory()); |
||
43 | $this->assertInstanceOf(ProductInterface::class, $this->getFactory()->create(FirstProduct::class)); |
||
44 | $this->assertInstanceOf(ProductInterface::class, $this->getFactory()->create(SecondProduct::class)); |
||
45 | } |
||
55 |