getServerProtocol(); $this->assertEquals($expected, $res); } public function testGetServerProtocolHTTPS() { $expected='https://'; $_SERVER['HTTPS'] = 'On'; $viewHelper = new Msd_View_Helper_GetServerProtocol(); $res = $viewHelper->getServerProtocol(); $this->assertEquals($expected, $res); } }