Exemplo n.º 1
0
 public function testGetEnv()
 {
     $this->assertSame('env_value', $this->request->getEnv('envParam'), 'Get from env fails');
     $this->assertNull($this->request->getEnv('nonexistent'), 'Get nonexistent key from env fails');
 }