Home | History | Annotate | Download | only in intltest

Lines Matching refs:getStrength

89 // ctor, dtor, createInstance, compare, getStrength/setStrength
160 logln("testing Collator::getStrength() method ...");
161 doAssert((col->getStrength() == Collator::TERTIARY), "collation object has the wrong strength");
162 doAssert((col->getStrength() != Collator::PRIMARY), "collation object's strength is primary difference");
167 doAssert((col->getStrength() != Collator::TERTIARY), "collation object's strength is secondary difference");
168 doAssert((col->getStrength() != Collator::PRIMARY), "collation object's strength is primary difference");
169 doAssert((col->getStrength() == Collator::SECONDARY), "collation object has the wrong strength");
201 logln("testing Collator::getStrength() method again ...");
202 doAssert((col->getStrength() != Collator::TERTIARY), "collation object has the wrong strength");
203 doAssert((col->getStrength() == Collator::PRIMARY), "collation object's strength is not primary difference");
207 doAssert((col->getStrength() == Collator::TERTIARY), "collation object's strength is not tertiary difference");
208 doAssert((col->getStrength() != Collator::PRIMARY), "collation object's strength is primary difference");
209 doAssert((col->getStrength() != Collator::SECONDARY), "collation object's strength is secondary difference");
1108 if (col->getStrength() != Collator::TERTIARY)
1954 virtual ECollationStrength getStrength(void) const;
2085 Collator::ECollationStrength TestCollator::getStrength() const
2309 " s: " + c->getStrength() +