mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-615 Changed the parameter name and tested it.
X-SVN-Rev: 2524
This commit is contained in:
parent
0f626e9c1e
commit
e55dacf4f4
3 changed files with 10 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue