typedSession.flush();
Cursor<TimeValColumn> timeVal = typedSession.timeSeriesSlice(colFamily, rowKey, 40, 60, 200);
for(int i = 0; i < 3; i++) {
timeVal.next();
TimeValColumn current = timeVal.getCurrent();
Assert.assertEquals(i*10+40, current.getTime());
}
}