for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
function _testProcess($function, $caseList) {
$caseList = array_reverse($caseList);
foreach ($caseList as $testCase) {
call_user_func_array($function, $testCase);
}