ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
AdveStandardGUIRequestTest.php
Go to the documentation of this file.
1 <?php
2 
4 
10 class AdveStandardGUIRequestTest extends TestCase
11 {
12  protected function tearDown(): void
13  {
14  }
15 
16  protected function getRequest(array $get, array $post): \ILIAS\AdvancedEditing\StandardGUIRequest
17  {
18  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
19  $lng_mock = $this->createMock(ilLanguage::class);
20  $data = new \ILIAS\Data\Factory();
21  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
22  return new \ILIAS\AdvancedEditing\StandardGUIRequest(
23  $http_mock,
24  $refinery,
25  $get,
26  $post
27  );
28  }
29 
33  public function testGroup(): void
34  {
35  $request = $this->getRequest(
36  [
37  "grp" => "5"
38  ],
39  []
40  );
41 
42  $this->assertEquals(
43  "5",
44  $request->getGroup()
45  );
46  }
47 }
Class ChatMainBarProvider .
$post
Definition: ltitoken.php:49
getRequest(array $get, array $post)
Refinery Factory $refinery