19 declare(strict_types=1);
29 protected function setUp(): void
33 $lng_mock = $this->getMockBuilder(
ILIAS\Language\Language::class)
34 ->disableOriginalConstructor()
42 $this->assertInstanceOf(ilTestLegacyFormsHelper::class, $this->
object);
48 $expected =
'msg_input_is_required';
49 $actual = $this->
object->checkPointsInput(
$data,
true);
50 $this->assertEquals($expected, $actual);
55 $data = [
'points' => []];
56 $expected =
'msg_input_is_required';
57 $actual = $this->
object->checkPointsInput(
$data,
true);
58 $this->assertEquals($expected, $actual);
63 $data = [
'points' => []];
65 $actual = $this->
object->checkPointsInput(
$data,
false);
66 $this->assertEquals($expected, $actual);
71 $data = [
'points' => [1, 5.2,
'not a number']];
72 $expected =
'form_msg_numeric_value_required';
73 $actual = $this->
object->checkPointsInput(
$data,
false);
74 $this->assertEquals($expected, $actual);
79 $data = [
'points' => [1, 5.2,
'7.8',
'9,1']];
80 $expected = [1.0, 5.2, 7.8, 9.1];
81 $actual = $this->
object->checkPointsInput(
$data,
false);
82 $this->assertEquals($expected, $actual);
87 $data = [
'points' => [0, -6]];
88 $expected =
'enter_enough_positive_points';
89 $actual = $this->
object->checkPointsInputEnoughPositive(
$data,
true);
90 $this->assertEquals($expected, $actual);
95 $data = [
'points' => [1, 5.2, 7.8, 9.1]];
96 $expected = [1.0, 5.2, 7.8, 9.1];
97 $actual = $this->
object->checkPointsInputEnoughPositive(
$data,
true);
98 $this->assertEquals($expected, $actual);
105 $this->assertFalse($this->
object->inArray($array, $key));
110 $array = [
'not_test' =>
'value'];
112 $this->assertFalse($this->
object->inArray($array, $key));
117 $array = [
'test' =>
'value'];
119 $this->assertTrue($this->
object->inArray($array, $key));
123 $array = [
'test' =>
''];
125 $this->assertFalse($this->
object->inArray($array, $key));
130 $array = [
'test' => []];
132 $this->assertFalse($this->
object->inArray($array, $key));
test_inArray_shouldReturnFalse_whenEmptyArray()
test_checkPointsFromRequest_shouldAbort_whenZeroPoints()
Interface Observer Contains several chained tasks and infos about them.
test_checkPointsFromRequest_shouldAbort_whenEmptyData()
test_checkPointsFromRequest_shouldReturn_whenPointsAsString()
test_checkPointsFromRequest_shouldAbort_whenEmptyPoints()
test_checkPointsFromRequest_shouldReturn_whenEmptyPoints()
test_inArray_shouldReturnFalse_whenKeyNotFound()
test_inArray_shouldReturnFalse_whenEmptyStringValue()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_inArray_shouldReturnFalse_whenEmptyArrayValue()
ilTestLegacyFormsHelper $object
test_checkPointsFromRequest_shouldAbort_whenNonNumericPoints()
test_inArray_shouldReturnTrue_whenKeyFound()
test_checkPointsFromRequest_shouldReturn_whenNonZeroPoints()