Menu callback: Submits the 'Chained' form programmatically.
function batch_test_programmatic($value = 1) {
$form_state = array(
'values' => array(
'value' => $value,
),
);
drupal_form_submit('batch_test_chained_form', $form_state);
return 'Got out of a programmatic batched form.';
}