ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AdveStandardGUIRequestTest Class Reference

Test clipboard repository. More...

+ Inheritance diagram for AdveStandardGUIRequestTest:
+ Collaboration diagram for AdveStandardGUIRequestTest:

Public Member Functions

 testGroup ()
 Test group. More...
 

Protected Member Functions

 tearDown ()
 
 getRequest (array $get, array $post)
 

Detailed Description

Test clipboard repository.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 26 of file AdveStandardGUIRequestTest.php.

Member Function Documentation

◆ getRequest()

AdveStandardGUIRequestTest::getRequest ( array  $get,
array  $post 
)
protected

Definition at line 32 of file AdveStandardGUIRequestTest.php.

References $data, and ILIAS\UI\examples\Layout\Page\Standard\$refinery.

Referenced by testGroup().

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  }
Interface Observer Contains several chained tasks and infos about them.
$post
Definition: ltitoken.php:46
+ Here is the caller graph for this function:

◆ tearDown()

AdveStandardGUIRequestTest::tearDown ( )
protected

Definition at line 28 of file AdveStandardGUIRequestTest.php.

28  : void
29  {
30  }

◆ testGroup()

AdveStandardGUIRequestTest::testGroup ( )

Test group.

Definition at line 49 of file AdveStandardGUIRequestTest.php.

References getRequest().

49  : void
50  {
51  $request = $this->getRequest(
52  [
53  "grp" => "5"
54  ],
55  []
56  );
57 
58  $this->assertEquals(
59  "5",
60  $request->getGroup()
61  );
62  }
getRequest(array $get, array $post)
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: