ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
QuestionPoolDICTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
33{
34 protected $backupGlobals = false;
35
37
38 protected function setUp(): void
39 {
40 parent::setUp();
41
42 $this->object = new QuestionPoolDIC();
43 }
44
45 public function testConstruct(): void
46 {
47 $this->assertInstanceOf(QuestionPoolDIC::class, $this->object);
48 }
49}
Class assBaseTestCase.