public function testGetResponseFactoryAfterBeingSet()
 {
     $responseFactory = $this->getMock('Saml\\Ecp\\Response\\ResponseFactoryInterface');
     $this->_client->setResponseFactory($responseFactory);
     $this->assertSame($responseFactory, $this->_client->getResponseFactory());
 }