public function testHttpAuthenticationUrl()
 {
     $this->configuration->makeHttpAuthenticationType();
     $expectedAction = 'Test.ff';
     $this->parameters['format'] = 'json';
     $expectedPath = '/' . $this->configuration->getContext() . '/' . $expectedAction;
     $expectedParameters = array('channel' => 'de', 'format' => 'json');
     $this->assertUrlEquals($expectedPath, $expectedParameters, $this->urlBuilder->getAuthenticationUrl($expectedAction, $this->parameters), $this->configuration->getUserName(), $this->configuration->getPassword());
 }