assertSame($expected, Common::prepareForOutput($content, $exclude));
}//end testPrepareForOutput()
/**
* Test formatting whitespace characters, on Windows.
*
* @param string $content The content to prepare.
* @param string[] $exclude A list of characters to leave invisible.
* @param string $expected Expected function output (unused in this test).
* @param string $expectedWin Expected function output on Windows.
*
* @requires OS ^WIN.*.
* @dataProvider dataPrepareForOutput
*
* @return void
*/
public function testPrepareForOutputWindows($content, $exclude, $expected, $expectedWin)
{
$this->assertSame($expectedWin, Common::prepareForOutput($content, $exclude));
}//end testPrepareForOutputWindows()
/**
* Data provider.
*
* @see testPrepareForOutput()
* @see testPrepareForOutputWindows()
*
* @return array