protected function checkService()
 {
     $soapInstalled = InstallUtil::checkSoap();
     if ($soapInstalled) {
         $this->message = Zurmo::t('InstallModule', 'SOAP is installed.');
         return true;
     } else {
         $this->message = Zurmo::t('InstallModule', 'SOAP is not installed.');
         return false;
     }
 }
 /**
  * Simple test to confirm the check doesnt break.
  */
 public function testCheckSoap()
 {
     $this->assertNotNull(InstallUtil::checkSoap());
 }