Home
last modified time | relevance | path

Searched refs:doAssert (Results 1 – 9 of 9) sorted by relevance

/third_party/icu/icu4c/source/test/intltest/
Dapicoll.cpp53 CollationAPITest::doAssert(UBool condition, const char *message) in doAssert() function in CollationAPITest
100 doAssert((col->compare("ab", "abc") == Collator::LESS), "ab < abc comparison failed"); in TestProperty()
101 doAssert((col->compare("ab", "AB") == Collator::LESS), "ab < AB comparison failed"); in TestProperty()
102doAssert((col->compare("blackbird", "black-bird") == Collator::GREATER), "black-bird > blackbird c… in TestProperty()
103doAssert((col->compare("black bird", "black-bird") == Collator::LESS), "black bird > black-bird co… in TestProperty()
104doAssert((col->compare("Hello", "hello") == Collator::GREATER), "Hello > hello comparison failed"); in TestProperty()
105doAssert((col->compare("","",success) == UCOL_EQUAL), "Comparison between empty strings failed"); in TestProperty()
107doAssert((col->compareUTF8("\x61\x62\xc3\xa4", "\x61\x62\xc3\x9f", success) == UCOL_LESS), "ab a-u… in TestProperty()
115doAssert((col->compare(abauIter, abssIter, success) == UCOL_LESS), "ab a-umlaut < ab sharp-s UChar… in TestProperty()
120doAssert((col->compare("ab", "abc", 2) == Collator::EQUAL), "ab = abc with length 2 comparison fai… in TestProperty()
[all …]
Dusettest.cpp398 doAssert(set.isEmpty() == true, "set should be empty"); in TestAddRemove()
399 doAssert(set.size() == 0, "size should be 0"); in TestAddRemove()
401 doAssert(set.size() == 0x110000, "size should be 0x110000"); in TestAddRemove()
405 doAssert(set.isEmpty() == false, "set should not be empty"); in TestAddRemove()
406 doAssert(set.size() != 0, "size should not be equal to 0"); in TestAddRemove()
407 doAssert(set.size() == 26, "size should be equal to 26"); in TestAddRemove()
410 doAssert(set.size() == 22, "size should be equal to 22"); in TestAddRemove()
413 doAssert(set.size() == 19, "size should be equal to 19"); in TestAddRemove()
416 doAssert(set.size() == 16, "size should be equal to 16"); in TestAddRemove()
419 doAssert(set.size() == 10, "size should be equal to 10"); in TestAddRemove()
[all …]
Dapicoll.h27 void doAssert(UBool condition, const char *message);
Dusettest.h181 void doAssert(UBool, const char*);
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
DCollationAPITest.java69 doAssert(bytes.length == 3 && bytes[0] == 1 && bytes[1] == 1 in TestCollationKey()
76 doAssert(sortkIgnorable != null && sortkIgnorable.toByteArray().length == 3, in TestCollationKey()
78 doAssert(sortkIgnorable.compareTo(sortk1) == 0, in TestCollationKey()
83 doAssert(sortk1 == null, "Error code should return bogus collation key"); in TestCollationKey()
88 doAssert((sortk1.compareTo(sortk2)) > 0, "Result should be \"Abcda\" >>> \"abcda\""); in TestCollationKey()
92 doAssert(!(sortk1.equals(sortk2)), "The sort keys should be different"); in TestCollationKey()
93 doAssert((sortk1.hashCode() != sortk2.hashCode()), "sort key hashCode() failed"); in TestCollationKey()
94 doAssert((sortk1.equals(sortkNew)), "The sort keys assignment failed"); in TestCollationKey()
95 doAssert((sortk1.hashCode() == sortkNew.hashCode()), "sort key hashCode() failed"); in TestCollationKey()
114 doAssert(key1.compareTo(key2) > 0, in TestCollationKey()
[all …]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationAPITest.java66 doAssert(bytes.length == 3 && bytes[0] == 1 && bytes[1] == 1 in TestCollationKey()
73 doAssert(sortkIgnorable != null && sortkIgnorable.toByteArray().length == 3, in TestCollationKey()
75 doAssert(sortkIgnorable.compareTo(sortk1) == 0, in TestCollationKey()
80 doAssert(sortk1 == null, "Error code should return bogus collation key"); in TestCollationKey()
85 doAssert((sortk1.compareTo(sortk2)) > 0, "Result should be \"Abcda\" >>> \"abcda\""); in TestCollationKey()
89 doAssert(!(sortk1.equals(sortk2)), "The sort keys should be different"); in TestCollationKey()
90 doAssert((sortk1.hashCode() != sortk2.hashCode()), "sort key hashCode() failed"); in TestCollationKey()
91 doAssert((sortk1.equals(sortkNew)), "The sort keys assignment failed"); in TestCollationKey()
92 doAssert((sortk1.hashCode() == sortkNew.hashCode()), "sort key hashCode() failed"); in TestCollationKey()
111 doAssert(key1.compareTo(key2) > 0, in TestCollationKey()
[all …]
/third_party/icu/icu4c/source/test/cintltst/
Dputiltst.c53 static void doAssert(double expect, double got, const char *message);
75 doAssert(expn1, 0.5, "uprv_fmod(30.50, 15.00) failed."); in TestPUtilAPI()
79 doAssert(expn1, 1, "uprv_ceil(0.021) failed."); in TestPUtilAPI()
83 doAssert(expn1, 0, "uprv_floor(0.021) failed."); in TestPUtilAPI()
87 doAssert(expn1, 0.675, "uprv_fabs(2.02-1.345) failed."); in TestPUtilAPI()
90 doAssert(uprv_fmax(2.4, 1.2), 2.4, "uprv_fmax(2.4, 1.2) failed."); in TestPUtilAPI()
94doAssert(expn1, uprv_getNaN(), "uprv_fmax(uprv_getNaN(), 1.2) failed. when one parameter is NaN"); in TestPUtilAPI()
97 doAssert(uprv_fmin(2.4, 1.2), 1.2, "uprv_fmin(2.4, 1.2) failed."); in TestPUtilAPI()
101doAssert(expn1, uprv_getNaN(), "uprv_fmin(uprv_getNaN(), 1.2) failed. when one parameter is NaN"); in TestPUtilAPI()
104 doAssert(uprv_max(4, 2), 4, "uprv_max(4, 2) failed."); in TestPUtilAPI()
[all …]
Dcapitst.c172 static void doAssert(int condition, const char *message) in doAssert() function
354 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object has the wrong strength"); in TestProperty()
355doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary differe… in TestProperty()
359doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object's strength is secondary diff… in TestProperty()
360doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary differe… in TestProperty()
361 doAssert( (ucol_getStrength(col) == UCOL_SECONDARY), "collation object has the wrong strength"); in TestProperty()
392 doAssert(u_strFindFirst(rules, tempLength, aa, 2) != NULL, in TestProperty()
402 doAssert( tempLength == 0x00, "getRulesEx() result incorrect" ); in TestProperty()
424 doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object has the wrong strength"); in TestProperty()
425doAssert( (ucol_getStrength(col) == UCOL_PRIMARY), "collation object's strength is not primary dif… in TestProperty()
[all …]
Dcapitst.h34 static void doAssert(int condition, const char *message);