public function testIsConnectionAllowed()
 {
     $result = $this->ServiceRegistry->isConnectionAllowed("http://ivotestsp.local", "http://doesntexist.local");
     $this->assertFalse($result);
     $result = $this->ServiceRegistry->isConnectionAllowed("http://ivotestsp.local", "http://ivoidp");
     $this->assertTrue($result);
 }
 public function isConnectionAllowed($spEntityId, $idpEntityId)
 {
     return $this->_serviceRegistry->isConnectionAllowed($spEntityId, $idpEntityId);
 }