ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilIndividualAssessmentSettingsTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
28 {
29  public function test_create_settings()
30  {
31  $obj_id = 10;
32  $title = 'My iass';
33  $description = 'Special iass for members';
34  $content = 'Everything you have learned';
35  $record_remplate = 'You should ask these things';
36  $event_time_place_required = true;
37  $file_required = false;
38 
39  $settings = new ilIndividualAssessmentSettings(
40  $obj_id,
41  $title,
42  $description,
43  $content,
44  $record_remplate,
45  $event_time_place_required,
46  $file_required
47  );
48  $this->assertEquals($obj_id, $settings->getObjId());
49  $this->assertEquals($title, $settings->getTitle());
50  $this->assertEquals($description, $settings->getDescription());
51  $this->assertEquals($content, $settings->getContent());
52  $this->assertEquals($record_remplate, $settings->getRecordTemplate());
53  $this->assertTrue($settings->isEventTimePlaceRequired());
54  $this->assertFalse($settings->isFileRequired());
55  }
56 
57  public function test_to_form_input()
58  {
59  $lng = $this->createMock(ilLanguage::class);
60  $lng->expects($this->atLeastOnce())
61  ->method('txt')
62  ->willReturn("label")
63  ;
64 
65  $df = new ILIAS\Data\Factory();
68  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
69  new ILIAS\UI\Implementation\Component\SignalGenerator(),
70  $df,
71  $refinery,
72  $lng
73  );
74 
75  $obj_id = 10;
76  $title = 'My iass';
77  $description = 'Special iass for members';
78  $content = 'Everything you have learned';
79  $record_remplate = 'You should ask these things';
80  $event_time_place_required = true;
81  $file_required = false;
82 
83  $settings = new ilIndividualAssessmentSettings(
84  $obj_id,
85  $title,
86  $description,
87  $content,
88  $record_remplate,
89  $event_time_place_required,
90  $file_required
91  );
92 
93  $input = $settings->toFormInput(
94  $f,
95  $lng,
96  $refinery
97  );
98 
99  $this->assertInstanceOf(Section::class, $input);
100  }
101 }
Interface Observer Contains several chained tasks and infos about them.
An object carrying settings of an Individual Assessment obj beyond the standard information.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $lng
Definition: privfeed.php:31