Home
last modified time | relevance | path

Searched refs:fake_ (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/pc/
Dproxy_unittest.cc99 fake_ = Fake::Create(); in SetUp()
101 FakeSignalingProxy::Create(signaling_thread_.get(), fake_.get()); in SetUp()
107 rtc::scoped_refptr<Fake> fake_; member in webrtc::SignalingProxyTest
111 EXPECT_CALL(*fake_, Destroy()) in TEST_F()
115 fake_ = nullptr; in TEST_F()
120 EXPECT_CALL(*fake_, VoidMethod0()) in TEST_F()
128 EXPECT_CALL(*fake_, Method0()) in TEST_F()
137 EXPECT_CALL(*fake_, ConstMethod0()) in TEST_F()
147 EXPECT_CALL(*fake_, Method1(arg1)) in TEST_F()
157 EXPECT_CALL(*fake_, ConstMethod1(arg1)) in TEST_F()
[all …]
/external/adhd/cras/src/tests/
Dhfp_alsa_iodev_unittest.cc39 static size_t fake_##name##_called; \
40 static int fake_##name(void* a) { \
41 fake_##name##_called++; \
45 static size_t fake_##name##_called; \
46 static int fake_##name(void* a, void* b) { \
47 fake_##name##_called++; \
51 static size_t fake_##name##_called; \
52 static int fake_##name(void* a, void* b, void* c) { \
53 fake_##name##_called++; \
/external/googletest/docs/
Dgmock_cook_book.md666 return fake_.DoThis(n);
669 fake_.DoThat(s, p);
674 FakeFoo fake_; // Keeps an instance of the fake in the mock.
717 you need to write `Invoke(&fake_, static_cast<bool (FakeFoo::*)(double)
718 const>(&FakeFoo::DoThis))` instead of `Invoke(&fake_, &FakeFoo::DoThis)`