Example #1
0
 private function processTests(array $tests)
 {
     $testsObject = $this->project->getTests();
     foreach ($tests as $test => $result) {
         if ($test == 'UNCOVERED_FILES_FROM_WHITELIST') {
             continue;
         }
         $testsObject->addTest($test, $result);
     }
 }