// text starts with the nonDigit char and ends with digit char
// the first set of digits in text folows by "\u0909" char from the DEVANGARI script
// the second set of digits in text folows by "\u0983" char from the BENGALI script
chars = testStringContext2.toCharArray();
ns.shape(chars, 0, chars.length);
for (int i=0; i < chars.length; i++){
assertEquals("shaped char at pos[" + i + "] not equals to the golden one", (int)goldenBengaliDevanagariStringContext2.charAt(i), chars[i]);
}