ICU-615 Changed the parameter name and tested it.

X-SVN-Rev: 2524
This commit is contained in:
George Rhoten 2000-09-27 20:12:18 +00:00
parent 0f626e9c1e
commit e55dacf4f4
3 changed files with 10 additions and 3 deletions

View file

@ -26,8 +26,8 @@ CharacterIterator::CharacterIterator(int32_t length, UTextOffset position)
}
}
CharacterIterator::CharacterIterator(int32_t length, UTextOffset begin, UTextOffset end, UTextOffset position)
: textLength(length), pos(position), begin(begin), end(end) {
CharacterIterator::CharacterIterator(int32_t length, UTextOffset textBegin, UTextOffset textEnd, UTextOffset position)
: textLength(length), pos(position), begin(textBegin), end(textEnd) {
if(textLength < 0) {
textLength = 0;
}

View file

@ -523,7 +523,7 @@ protected:
CharacterIterator() {}
CharacterIterator(int32_t length);
CharacterIterator(int32_t length, UTextOffset position);
CharacterIterator(int32_t length, UTextOffset begin, UTextOffset end, UTextOffset position);
CharacterIterator(int32_t length, UTextOffset textBegin, UTextOffset textEnd, UTextOffset position);
CharacterIterator(const CharacterIterator &that);
CharacterIterator &operator=(const CharacterIterator &that);

View file

@ -50,6 +50,13 @@ void CharIterTest::TestConstructionAndEquality() {
CharacterIterator* test4 = new StringCharacterIterator(testText2);
CharacterIterator* test5 = test1->clone();
if (test1d->startIndex() < 0)
errln("Construction failed: startIndex is negative");
if (test1d->endIndex() > testText.length())
errln("Construction failed: endIndex is greater than the text length");
if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex())
errln("Construction failed: startIndex is negative");
if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4)
errln("Construction or operator== failed: Unequal objects compared equal");
if (*test1 != *test5)