set('Core', 'EscapeInvalidChildren', true);
$inputs[0] = '';
$expect[0] = '';
$inputs[1] = 'Make well formed.';
$expect[1] = 'Make well formed.';
$inputs[2] = '
Fix nesting.
';
$expect[2] = 'Fix nesting.';
$inputs[3] = 'Foreign element removal.';
$expect[3] = 'Foreign element removal.';
$inputs[4] = 'All three.
';
$expect[4] = 'All three.';
$this->assertStrategyWorks($strategy, $inputs, $expect, $config);
}
}
?>