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