columnDescriptions.add(new ColumnDescription("B", ValueType.TIMEOFDAY, "B"));
TimeOfDayValue hindiTimeOfDayValue = new TimeOfDayValue(1, 12, 1);
String hindiTimeOfDayString = "\u0966\u0967\u003a\u0967\u0968\u003a\u0966\u0967";
Reader reader = new StringReader("1," + hindiTimeOfDayString);
DataTable dataTable = CsvDataSourceHelper.read(reader, columnDescriptions, false,
new ULocale("hi_IN"));
assertEquals(1, dataTable.getNumberOfRows());
assertEquals(2, dataTable.getNumberOfColumns());
assertEquals(new NumberValue(1), dataTable.getRow(0).getCell(0).getValue());
assertEquals(hindiTimeOfDayValue, dataTable.getRow(0).getCell(1).getValue());
}