Page callback, calls drupal_alter().
This is for testing that the theme can have hook_*_alter() implementations that run during page callback execution, even before theme() is called for the first time.
function _theme_test_alter() {
$data = 'foo';
drupal_alter('theme_test_alter', $data);
return "The altered data is {$data}.";
}