| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class IniterTest extends \PHPUnit\Framework\TestCase |
||
| 22 | { |
||
| 23 | use CheckAccessTrait; |
||
|
|
|||
| 24 | |||
| 25 | /** |
||
| 26 | * @var AuthManager |
||
| 27 | */ |
||
| 28 | protected $auth; |
||
| 29 | |||
| 30 | protected function setUp(): void |
||
| 31 | { |
||
| 32 | $this->auth = $this->createObject(AuthManager::class); |
||
| 33 | |||
| 34 | $this->setAssignments(); |
||
| 35 | } |
||
| 36 | |||
| 37 | public function testReinit() |
||
| 38 | { |
||
| 39 | $this->assertNull((new Initer())->reinit($this->auth)); |
||
| 40 | } |
||
| 41 | |||
| 42 | protected function createObject($config) |
||
| 45 | } |
||
| 46 | } |
||
| 47 |