ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
LearningHistoryStandardGUIRequestTest Class Reference
+ Inheritance diagram for LearningHistoryStandardGUIRequestTest:
+ Collaboration diagram for LearningHistoryStandardGUIRequestTest:

Public Member Functions

 testItems ()
 

Protected Member Functions

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

Detailed Description

Member Function Documentation

◆ getRequest()

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

Definition at line 14 of file LearningHistoryStandardGUIRequestTest.php.

References $data, and ILIAS\Repository\$refinery.

Referenced by testItems().

15  {
16  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
17  $lng_mock = $this->createMock(ilLanguage::class);
18  $data = new \ILIAS\Data\Factory();
19  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
20  return new \ILIAS\LearningHistory\StandardGUIRequest(
21  $http_mock,
22  $refinery,
23  $get,
24  $post
25  );
26  }
Class ChatMainBarProvider .
$post
Definition: ltitoken.php:49
Refinery Factory $refinery
+ Here is the caller graph for this function:

◆ tearDown()

LearningHistoryStandardGUIRequestTest::tearDown ( )
protected

Definition at line 10 of file LearningHistoryStandardGUIRequestTest.php.

10  : void
11  {
12  }

◆ testItems()

LearningHistoryStandardGUIRequestTest::testItems ( )

Definition at line 28 of file LearningHistoryStandardGUIRequestTest.php.

References getRequest().

28  : void
29  {
30  $request = $this->getRequest(
31  [
32  "to_ts" => "123"
33  ],
34  [
35  ]
36  );
37 
38  $this->assertEquals(
39  123,
40  $request->getToTS()
41  );
42  }
+ Here is the call graph for this function:

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