doTest(testString, p, q, 83, "This costs $20,00,000.");
q = sentIter1.following(1);
doTest(testString, 1, q, 7, "ello! ");
q = sentIter1.following(10);
doTest(testString, 10, q, 20, " are you? ");
q = sentIter1.following(20);
doTest(testString, 20, q, 31, "I'am fine. ");
p = sentIter1.following(sentIter1.last());
q = sentIter1.next(sentIter1.last());
if (p != BreakIterator.DONE || q != BreakIterator.DONE)
errln("ERROR: following()/next() at last position returned #"