ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
InfoScreenStandardGUIRequestTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
8 
14 class InfoScreenStandardGUIRequestTest extends TestCase
15 {
16  protected function tearDown(): void
17  {
18  }
19 
20  protected function getRequest(array $get, array $post): StandardGUIRequest
21  {
22  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
23  $lng_mock = $this->createMock(ilLanguage::class);
24  $data = new Factory();
25  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
26  return new StandardGUIRequest(
27  $http_mock,
28  $refinery,
29  $get,
30  $post
31  );
32  }
33 
37  public function testUserId()
38  {
39  $request = $this->getRequest(
40  [
41  "user_id" => "57"
42  ],
43  []
44  );
45 
46  $this->assertEquals(
47  57,
48  $request->getUserId()
49  );
50  }
51 
55  public function testLPEdit()
56  {
57  $request = $this->getRequest(
58  [
59  ],
60  [
61  "lp_edit" => "1"
62  ]
63  );
64 
65  $this->assertEquals(
66  1,
67  $request->getLPEdit()
68  );
69  }
70 }
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$post
Definition: ltitoken.php:49
Refinery Factory $refinery