@Test
public void testNormalizeCharsCombiningSpaces() throws LdapException
{
Normalizer normalizer = new DeepTrimNormalizer( "1.1.1" );
char[] chars = new char[]
{ ' ', 0x0310, 'a', 'a', ' ', ' ', 0x0311, ' ', ' ', 'a', 0x0311, 0x0312 };
char[] expected = new char[]
{ ' ', 0x0310, 'a', 'a', ' ', ' ', 0x0311, ' ', 'a', 0x0311, 0x0312 };
assertEquals( new String( expected ), normalizer.normalize( new String( chars ) ) );
}