ILIAS  release_8 Revision v8.24
ilTestRandomQuestionSetQuestionTest.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
26{
28
29 protected function setUp(): void
30 {
31 parent::setUp();
32
33 $this->testObj = new ilTestRandomQuestionSetQuestion();
34 }
35
37 {
38 $this->assertInstanceOf(ilTestRandomQuestionSetQuestion::class, $this->testObj);
39 }
40
41 public function testQuestionId(): void
42 {
43 $this->testObj->setQuestionId(125);
44 $this->assertEquals(125, $this->testObj->getQuestionId());
45 }
46
47 public function testSequencePosition(): void
48 {
49 $this->testObj->setSequencePosition(125);
50 $this->assertEquals(125, $this->testObj->getSequencePosition());
51 }
52
53 public function testSourcePoolDefinitionId(): void
54 {
55 $this->testObj->setSourcePoolDefinitionId(125);
56 $this->assertEquals(125, $this->testObj->getSourcePoolDefinitionId());
57 }
58}
Class ilTestBaseClass.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...