| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class BaseTest extends ParentClass |
||
| 22 | { |
||
| 23 | protected $objectManager; |
||
| 24 | |||
| 25 | public function setUp() |
||
| 26 | { |
||
| 27 | parent::setUp(); |
||
| 28 | $this->objectManager = new ObjectManager($this); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function testInitialize() |
||
| 32 | { |
||
| 33 | $this->assertInstanceOf(ObjectManager::class, $this->objectManager, 'Assert proper service locator instance'); |
||
| 34 | } |
||
| 36 |