ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
QuestionPoolDICTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(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.