ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LearningHistoryStandardGUIRequestTest.php
Go to the documentation of this file.
1 <?php
2 
20 
25 {
26  protected function tearDown(): void
27  {
28  }
29 
30  protected function getRequest(array $get, array $post): \ILIAS\LearningHistory\StandardGUIRequest
31  {
32  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
33  $lng_mock = $this->createMock(ilLanguage::class);
34  $data = new \ILIAS\Data\Factory();
35  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
36  return new \ILIAS\LearningHistory\StandardGUIRequest(
37  $http_mock,
38  $refinery,
39  $get,
40  $post
41  );
42  }
43 
44  public function testItems(): void
45  {
46  $request = $this->getRequest(
47  [
48  "to_ts" => "123"
49  ],
50  [
51  ]
52  );
53 
54  $this->assertEquals(
55  123,
56  $request->getToTS()
57  );
58  }
59 }
Interface Observer Contains several chained tasks and infos about them.
$post
Definition: ltitoken.php:46