Home
last modified time | relevance | path

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

/external/testng/src/main/java/org/testng/asserts/
DAssertion.java12 protected void doAssert(IAssert<?> assertCommand) { in doAssert() method in Assertion
30 assertCommand.doAssert(); in executeAssert()
104 abstract public void doAssert(); in doAssert() method in Assertion.SimpleAssert
109 doAssert(new SimpleAssert<Boolean>(condition, Boolean.TRUE, message) { in assertTrue()
111 public void doAssert() { in assertTrue()
118 doAssert(new SimpleAssert<Boolean>(condition, Boolean.TRUE) { in assertTrue()
120 public void doAssert() { in assertTrue()
127 doAssert(new SimpleAssert<Boolean>(condition, Boolean.FALSE, message) { in assertFalse()
129 public void doAssert() { in assertFalse()
136 doAssert(new SimpleAssert<Boolean>(condition, Boolean.FALSE) { in assertFalse()
[all …]
DSoftAssert.java17 protected void doAssert(IAssert<?> a) { in doAssert() method in SoftAssert
20 a.doAssert(); in doAssert()
DIAssert.java5 void doAssert(); in doAssert() method
/external/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.cpp389 doAssert(set.isEmpty() == TRUE, "set should be empty"); in TestAddRemove()
390 doAssert(set.size() == 0, "size should be 0"); in TestAddRemove()
392 doAssert(set.size() == 0x110000, "size should be 0x110000"); in TestAddRemove()
396 doAssert(set.isEmpty() == FALSE, "set should not be empty"); in TestAddRemove()
397 doAssert(set.size() != 0, "size should not be equal to 0"); in TestAddRemove()
398 doAssert(set.size() == 26, "size should be equal to 26"); in TestAddRemove()
401 doAssert(set.size() == 22, "size should be equal to 22"); in TestAddRemove()
404 doAssert(set.size() == 19, "size should be equal to 19"); in TestAddRemove()
407 doAssert(set.size() == 16, "size should be equal to 16"); in TestAddRemove()
410 doAssert(set.size() == 10, "size should be equal to 10"); in TestAddRemove()
[all …]
Dapicoll.h27 void doAssert(UBool condition, const char *message);
Dusettest.h175 void doAssert(UBool, const char*);
/external/icu/android_icu4j/src/main/tests/android/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 …]
/external/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 …]
/external/icu/icu4c/source/test/cintltst/
Dputiltst.c49 static void doAssert(double expect, double got, const char *message);
71 doAssert(expn1, 0.5, "uprv_fmod(30.50, 15.00) failed."); in TestPUtilAPI()
75 doAssert(expn1, 1, "uprv_ceil(0.021) failed."); in TestPUtilAPI()
79 doAssert(expn1, 0, "uprv_floor(0.021) failed."); in TestPUtilAPI()
83 doAssert(expn1, 0.675, "uprv_fabs(2.02-1.345) failed."); in TestPUtilAPI()
86 doAssert(uprv_fmax(2.4, 1.2), 2.4, "uprv_fmax(2.4, 1.2) failed."); in TestPUtilAPI()
90doAssert(expn1, uprv_getNaN(), "uprv_fmax(uprv_getNaN(), 1.2) failed. when one parameter is NaN"); in TestPUtilAPI()
93 doAssert(uprv_fmin(2.4, 1.2), 1.2, "uprv_fmin(2.4, 1.2) failed."); in TestPUtilAPI()
97doAssert(expn1, uprv_getNaN(), "uprv_fmin(uprv_getNaN(), 1.2) failed. when one parameter is NaN"); in TestPUtilAPI()
100 doAssert(uprv_max(4, 2), 4, "uprv_max(4, 2) failed."); in TestPUtilAPI()
[all …]
Dcapitst.c168 static void doAssert(int condition, const char *message) in doAssert() function
350 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object has the wrong strength"); in TestProperty()
351doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary differe… in TestProperty()
355doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object's strength is secondary diff… in TestProperty()
356doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary differe… in TestProperty()
357 doAssert( (ucol_getStrength(col) == UCOL_SECONDARY), "collation object has the wrong strength"); in TestProperty()
388 doAssert(u_strFindFirst(rules, tempLength, aa, 2) != NULL, in TestProperty()
398 doAssert( tempLength == 0x00, "getRulesEx() result incorrect" ); in TestProperty()
420 doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object has the wrong strength"); in TestProperty()
421doAssert( (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);
/external/mockito/src/test/java/org/mockitousage/junitrule/
DStubbingWarningsJUnitRuleTest.java31 public void doAssert(Throwable t) { in no_unused_stubs_reported_on_failure()
46 public void doAssert(Throwable t) { in stubbing_arg_mismatch_on_failure()
65 public void doAssert(Throwable t) { in no_stubbing_arg_mismatch_when_no_mismatch_on_fail()
95 public void doAssert(Throwable t) { in multiple_stubbing_arg_mismatch_on_failure()
123 public void doAssert(Throwable t) { in reports_only_mismatching_stubs()
147 public void doAssert(Throwable t) { in no_mismatch_when_stub_was_used()
DStrictJUnitRuleTest.java84 public void doAssert(Throwable t) { in fails_fast_when_stubbing_invoked_with_different_argument()
138 public void doAssert(Throwable t) { in unused_stubs_with_multiple_mocks()
/external/mockito/src/test/java/org/mockitoutil/
DSafeJUnitRule.java40 failureAssert.doAssert(t); in apply()
56 public void doAssert(Throwable t) {
67 public void doAssert(Throwable t) {
95 void doAssert(Throwable t);
DSafeJUnitRuleTest.java111 public void doAssert(Throwable t) { in expected_exception_assert_did_not_match()
/external/testng/src/test/java/test/assertion/
DMyRawAssertion.java49 doAssert(new IAssert() { in myAssert()
56 public void doAssert() { in myAssert()