| /freebsd-14.2/contrib/libcbor/test/ |
| H A D | stream_expectations.c | 29 assert_true(current().expectation == UINT8_EQ); in uint8_callback() 40 assert_true(current().expectation == UINT16_EQ); in uint16_callback() 51 assert_true(current().expectation == UINT32_EQ); in uint32_callback() 62 assert_true(current().expectation == UINT64_EQ); in uint64_callback() 73 assert_true(current().expectation == NEGINT8_EQ); in negint8_callback() 217 assert_true(current().expectation == TAG_EQ); in tag_callback() 228 assert_true(current().expectation == HALF_EQ); in half_callback() 239 assert_true(current().expectation == FLOAT_EQ); in float_callback() 270 assert_true(current().expectation == BOOL_EQ); in bool_callback() 276 assert_true(current().expectation == NIL); in null_callback() [all …]
|
| H A D | stream_expectations.h | 73 enum test_expectation expectation; member
|
| /freebsd-14.2/contrib/googletest/docs/reference/ |
| H A D | mocking.md | 72 matchers. If `(`*`matchers...`*`)` is omitted, the expectation behaves as if 104 For example, the following code sets the expectation that 119 The `With` clause can be used at most once on an expectation and must be the 149 The `Times` clause can be used at most once on an expectation. 177 The `InSequence` clause can be used any number of times on an expectation. 192 For example, the following code sets the expectation that the `Describe()` 206 expectation is large or variable, for example: 220 The `After` clause can be used any number of times on an expectation. 286 The `WillRepeatedly` clause can be used at most once on an expectation. 292 Indicates that the expectation will no longer be active after the expected [all …]
|
| H A D | actions.md | 12 …eturn type, `value` is converted to the latter type <i>at the time the expectation is set</i>, not…
|
| /freebsd-14.2/contrib/googletest/googlemock/test/ |
| H A D | gmock_output_test_golden.txt | 36 Google Mock tried the following 1 expectation, but it didn't match: 50 Google Mock tried the following 1 expectation, but it didn't match: 99 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(_, _))... 100 Expected: the expectation is active 104 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(0, 0))... 121 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))... 126 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))... 143 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))... 148 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))... 184 Google Mock tried the following 1 expectation, but it didn't match: [all …]
|
| /freebsd-14.2/contrib/googletest/docs/ |
| H A D | gmock_for_dummies.md | 249 Actual function call count doesn't match this expectation: 257 the line number to jump right to the failed expectation. 271 Well, specifying the expectation beforehand allows gMock to report a violation 290 In gMock we use the `EXPECT_CALL()` macro to set an expectation on a mock 342 failed expectation in messages, making debugging easier. 446 expectation matches using a series of `WillOnce()` clauses followed by an 525 So far we've only shown examples where you have a single expectation. More 544 error, as the last matching expectation (#2) has been saturated. If, however, 546 as now #1 will be the matching expectation. 568 By default, an expectation can match a call even though an earlier expectation [all …]
|
| H A D | gmock_faq.md | 125 ### I have a failed test where gMock tells me TWICE that a particular expectation is not satisfied.… 132 Sometimes an expectation's state didn't change between two failures, and you'll 216 or you can put the sequence of actions in the same expectation:
|
| H A D | gmock_cook_book.md | 1031 When a mock method is called, the *last* matching expectation that's still 1498 a mock method is called, but <em>doesn't imply any expectation on the method 1552 `EXPECT_CALL()`), all invocations to it must match some expectation. If this 1672 unexpected behavior it is a compilation error to try to set an expectation on a 1686 tries to match a function call with an expectation, by default calls don't have 1689 the first and third, then the second expectation will be used. 1775 active. An expectation is active when created, and becomes inactive (aka 1796 Note that an expectation doesn't retire automatically when it's saturated. For 1892 the expectation is set, and `Return(std::ref(x))` will always return 0. 3030 The expectation spec says that the first `Bar("a")` call must happen before [all …]
|
| /freebsd-14.2/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-spec-builders.h | 622 void AddExpectation(const Expectation& expectation) const; 1575 TypedExpectation<F>* const expectation = in AddNewExpectation() local 1577 const std::shared_ptr<ExpectationBase> untyped_expectation(expectation); in AddNewExpectation() 1588 return *expectation; in AddNewExpectation() 1717 TypedExpectation<F>* const expectation = in PrintTriedExpectationsLocked() local 1720 expectation->DescribeLocationTo(why); in PrintTriedExpectationsLocked() 1724 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked() 1725 expectation->ExplainMatchResultTo(args, why); in PrintTriedExpectationsLocked() 1726 expectation->DescribeCallCountTo(why); in PrintTriedExpectationsLocked()
|
| /freebsd-14.2/contrib/googletest/googlemock/src/ |
| H A D | gmock-spec-builders.cc | 758 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation() 759 if (*last_expectation_ != expectation) { in AddExpectation() 761 expectation.expectation_base()->immediate_prerequisites_ += in AddExpectation() 764 *last_expectation_ = expectation; in AddExpectation()
|
| /freebsd-14.2/sys/contrib/openzfs/config/ |
| H A D | kernel-mkdir.m4 | 42 dnl # umode_t type rather than an int. The expectation is that any backport
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | OSSL_STORE_expect.pod | 25 I<expected_type> may be 0 to indicate explicitly that no expectation is made,
|
| /freebsd-14.2/contrib/libcbor/doc/source/ |
| H A D | development.rst | 42 **Why?** Because it is the client expectation. Vast majority of security
|
| /freebsd-14.2/contrib/ntp/ |
| H A D | README.pullrequests | 18 If there is no expectation that your work will be included in the
|
| /freebsd-14.2/crypto/openssl/doc/man7/ |
| H A D | provider-storemgmt.pod | 125 object types match the expectation too.
|
| /freebsd-14.2/usr.bin/fortune/ |
| H A D | Notes | 48 expectation that, should they just run "fortune", they will not be offended.
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/gpio/ |
| H A D | gpio.txt | 100 a) Define a single static polarity for the signal, with the expectation that
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
| H A D | LICENSE | 38 expectation of additional consideration or compensation, the person
|
| /freebsd-14.2/contrib/ntp/sntp/libevent/ |
| H A D | ChangeLog-2.0 | 451 o Preliminary support for Continue expectation in evhttp. (fa9305f Christopher Davis)
|
| /freebsd-14.2/contrib/libevent/ |
| H A D | ChangeLog-2.0 | 451 o Preliminary support for Continue expectation in evhttp. (fa9305f Christopher Davis)
|
| /freebsd-14.2/contrib/wpa/wpa_supplicant/ |
| H A D | ChangeLog | 666 behavior more consistent with likely user expectation
|
| /freebsd-14.2/share/dict/ |
| H A D | web2a | 42449 pre-expectation 44794 quasi expectation 46816 re-expectation
|
| /freebsd-14.2/contrib/one-true-awk/testdir/ |
| H A D | bib | 14040 For the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever. 14833 My soul, wait thou only upon God; for my expectation is from him. 16685 The hope of the righteous shall be gladness: but the expectation of the wicked shall perish. 16696 When a wicked man dieth, his expectation shall perish: and the hope of unjust men perisheth. 16712 The desire of the righteous is only good: but the expectation of the wicked is wrath. 17063 For surely there is an end; and thine expectation shall not be cut off. 17094 …y soul: when thou hast found it, then there shall be a reward, and thy expectation shall not be cu… 18035 And they shall be afraid and ashamed of Ethiopia their expectation, and of Egypt their glory. 18036 And the inhabitant of this isle shall say in that day, Behold, such is our expectation, whither we … 25041 And as the people were in expectation, and all men mused in their hearts of John, whether he were t… [all …]
|
| H A D | funstack.in | 4351 … fact that change is an important feature of the situation, and by the expectation that computer s… 25867 descriptors = "expectation; standard deviation; moment estimation; numerical method",
|
| /freebsd-14.2/sys/contrib/dev/acpica/ |
| H A D | changes.txt | 8079 descriptors that are mostly or all zeros, with the expectation that they
|