| Total Complexity | 2 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class DeleteTest extends TestCase |
||
| 11 | { |
||
| 12 | private $provider; |
||
| 13 | private $factory; |
||
| 14 | |||
| 15 | protected function setUp() |
||
| 16 | { |
||
| 17 | $this->provider = $this->prophesize(EntityProviderInterface::class); |
||
| 18 | $this->factory = $this->prophesize(EntityProviderFactoryInterface::class); |
||
| 19 | $this->factory->create(Argument::any())->willReturn($this->provider->reveal()); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function testCreateClass() |
||
| 64 | } |
||
| 65 | } |
||
| 66 |