public function testCreateBasicService()
 {
     $basic = $this->basicFactory->createService($this->basicServiceLocator->reveal());
     $this->assertInstanceOf('Zend\\Authentication\\Adapter\\Http', $basic);
 }
 public function testCreateDigestService()
 {
     $digest = $this->digestFactory->createService($this->digestServiceLocator->reveal());
     $this->assertInstanceOf('Zend\\Authentication\\Adapter\\Http', $digest);
 }