protected function checkService()
 {
     $passed = true;
     if (!InstallUtil::isFileUploadsOn()) {
         $this->message = Zurmo::t('InstallModule', 'PHP file_uploads is Off.  This should be on.');
         $passed = false;
     } else {
         $this->message = Zurmo::t('InstallModule', 'PHP file_uploads is on which is ok.');
     }
     return $passed;
 }
 public function testIsFileUploadsOn()
 {
     $this->assertTrue(InstallUtil::isFileUploadsOn());
 }