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