{
}
public void testGraphemeClusterGenerationWindows()
{
CodePointBuffer buffer = Utf16LE.getInstance().decodeString("T\r\n\r\n\r\nT", null); //$NON-NLS-1$
final int[] data = buffer.getBuffer();
final boolean[] result = new boolean[]
{
true, true, false, true, false, true, false, true
};
GraphemeClusterProducer prod = new GraphemeClusterProducer();
for (int i = 0; i < buffer.getLength(); i++)
{
final int codepoint = data[i];
if (prod.createGraphemeCluster(codepoint) != result[i])
{
TestCase.fail();