| 
|   | setUp () | 
|   | Http services has no additional deps so far to be set up.  More...
  | 
|   | 
Definition at line 23 of file InitHttpServicesTest.php.
 
◆ setUp()
  
  
      
        
          | InitHttpServicesTest::setUp  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
protected   | 
  
 
Http services has no additional deps so far to be set up. 
Definition at line 33 of file InitHttpServicesTest.php.
   35         $this->dic = new \ILIAS\DI\Container();
  
 
 
◆ testUIFrameworkInitialization()
      
        
          | InitHttpServicesTest::testUIFrameworkInitialization  | 
          ( | 
           | ) | 
           | 
        
      
 
Definition at line 38 of file InitHttpServicesTest.php.
References init().
   40         $this->assertFalse(isset($this->dic[
'http']));
    41         $this->assertFalse(isset($this->dic[
'http.response_sender_strategy']));
    42         $this->assertFalse(isset($this->dic[
'http.cookie_jar_factory']));
    43         $this->assertFalse(isset($this->dic[
'http.request_factory']));
    44         $this->assertFalse(isset($this->dic[
'http.response_factory']));
    45         (new \InitHttpServices())->
init($this->dic);
    46         $this->assertInstanceOf(
"ILIAS\HTTP\Services", $this->dic->http());
    47         $this->assertTrue(isset($this->dic[
'http']));
    48         $this->assertTrue(isset($this->dic[
'http.response_sender_strategy']));
    49         $this->assertTrue(isset($this->dic[
'http.cookie_jar_factory']));
    50         $this->assertTrue(isset($this->dic[
'http.request_factory']));
    51         $this->assertTrue(isset($this->dic[
'http.response_factory']));
 
 
 
 
◆ $dic
  
  
      
        
          | InitHttpServicesTest::$dic | 
         
       
   | 
  
protected   | 
  
 
 
The documentation for this class was generated from the following file: