33 $method = $class->getMethod(
$name);
34 $method->setAccessible(
true);
38 protected function setUp(): void
40 chdir(dirname(__FILE__));
45 require_once
'./Services/UICore/classes/class.ilCtrl.php';
46 $ilCtrl_mock = $this->createMock(
'ilCtrl');
47 $ilCtrl_mock->expects($this->any())->method(
'saveParameter');
48 $ilCtrl_mock->expects($this->any())->method(
'saveParameterByClass');
51 require_once
'./Services/Language/classes/class.ilLanguage.php';
52 $lng_mock = $this->createMock(
'ilLanguage', array(
'txt'), array(),
'',
false);
64 $this->assertInstanceOf(
'assLongMenu', $instance);
70 $this->assertEquals(
'qpl_qst_lome', $instance->getAdditionalTableName());
76 $this->assertEquals(
'assLongMenu', $instance->getQuestionType());
82 $this->assertEquals(
'qpl_a_lome', $instance->getAnswerTableName());
87 $method = self::getMethod(
'correctAnswerDoesNotExistInAnswerOptions');
89 $value = $method->invokeArgs($obj, array(array(array(5),1,1), array(1,2,3,4)));
90 $this->assertEquals(
true, $value);
95 $method = self::getMethod(
'correctAnswerDoesNotExistInAnswerOptions');
97 $value = $method->invokeArgs($obj, array(array(array(1),1,1), array(1,2,3,4)));
98 $this->assertEquals(
false, $value);
104 $obj->setCorrectAnswers(array( 0 => array( 0 => array(0 =>
'answer'),1 =>
'2', 2 =>
'1'),
105 1 => array( 0 => array(0 =>
'answer'),1 =>
'2', 2 =>
'1')));
106 $value = $obj->getMaximumPoints();
107 $this->assertEquals(4, $value);
113 $obj->setCorrectAnswers(array( 0 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1'),
114 1 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1')));
115 $value = $obj->getMaximumPoints();
116 $this->assertEquals(4.5, $value);
122 $obj->setCorrectAnswers(array( 0 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1'),
123 1 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1')));
124 $obj->setAnswers(array(array(1,2,3,4)));
125 $this->assertEquals($obj->isComplete(),
false);
145 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
151 $obj->setAnswers(array(array(1,2,3,4)));
152 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
158 $obj->setCorrectAnswers(array( 0 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1'),
159 1 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1')));
160 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
165 $obj->setCorrectAnswers(array( 0 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1'),
166 1 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1')));
167 $obj->setAnswers(array(array(
'answer')));
168 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
173 $obj->setCorrectAnswers(array( 0 => array( 0 => array(0 =>
'answer'),1 =>
'2.25', 2 =>
'1')));
174 $obj->setAnswers(array(array(1)));
175 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
181 $obj->setCorrectAnswers(array( 0 => array( 0 => array(),1 =>
'2.25', 2 =>
'1')));
182 $obj->setAnswers(array(array(
'answer')));
183 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
189 $obj->setCorrectAnswers(array( 0 => array( 0 => array())));
190 $obj->setAnswers(array(array(
'answer')));
191 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
197 $obj->setCorrectAnswers(array( 0 => array( 0 => array(
'answer'),1 => 0, 2 =>
'1')));
198 $obj->setAnswers(array(array(
'answer')));
199 $this->assertEquals($obj->checkQuestionCustomPart(),
false);
205 $obj->setCorrectAnswers(array( 0 => array( 0 => array(
'answer'),1 => 1, 2 =>
'1')));
206 $obj->setAnswers(array(array(
'answer')));
207 $this->assertEquals($obj->checkQuestionCustomPart(),
true);
213 $array = array( 0 =>
'squirrel', 1 =>
'icebear');
214 $_POST[
'answer'] = $array;
215 $this->assertEquals($obj->getSolutionSubmit(), $array);
221 $obj->setAnswerType(0);
222 $this->assertEquals(0, $obj->getAnswerType());
237 $obj->setJsonStructure(json_encode(array(1 =>
'bla')));
238 $this->assertEquals(
'{"1":"bla"}', $obj->getJsonStructure());
244 $this->assertEquals(
false, $obj->isShuffleAnswersEnabled());
245 $this->assertNotEquals(
true, $obj->isShuffleAnswersEnabled());
setGlobalVariable(string $name, $value)