Exemplo n.º 1
0
 public static function upload_unscheduled_results($to_upload)
 {
     if (!phoromatic::phoromatic_setup_module()) {
         return false;
     }
     if (!isset($to_upload[0]) || pts_result_file::is_test_result_file($to_upload[0]) == false) {
         echo PHP_EOL . 'No test result file was found to upload.' . PHP_EOL;
         return false;
     }
     phoromatic::upload_unscheduled_test_results($to_upload[0]);
 }