Home
last modified time | relevance | path

Searched refs:expected_call_count (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/tests/drivers/i2c/i2c_emul/src/
Dtest_forwarding_pio.cpp26 const unsigned int expected_call_count = 1 + data; in ZTEST() local
36 zexpect_equal(expected_call_count, target_write_requested_0_fake.call_count, in ZTEST()
37 "Expected to be called %d times, got %d", expected_call_count, in ZTEST()
39 zexpect_equal(expected_call_count, target_write_received_0_fake.call_count, in ZTEST()
40 "Expected to be called %d times, got %d", expected_call_count, in ZTEST()
49 zexpect_equal(expected_call_count, target_stop_0_fake.call_count, in ZTEST()
50 "Expected to be called %d times, got %d", expected_call_count, in ZTEST()
63 const unsigned int expected_call_count = 1 + i; in ZTEST() local
81 zexpect_equal(expected_call_count, target_read_requested_0_fake.call_count, in ZTEST()
82 "Expected to be called %d times, got %d", expected_call_count, in ZTEST()
[all …]
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_foreach_type/src/
Dmain.c130 int expected_call_count; in ZTEST() local
136 expected_call_count = (type != BT_KEYS_ALL) ? 2 : CONFIG_BT_MAX_PAIRED; in ZTEST()
144 zassert_true(call_counter == expected_call_count, in ZTEST()