Lines Matching refs:ProxyTest
176 class ProxyTest : public ::testing::Test { class
200 TEST_F(ProxyTest, WorkerThreadDestructor) { in TEST_F() argument
203 .WillOnce(InvokeWithoutArgs(this, &ProxyTest::CheckWorkerThread)); in TEST_F()
208 TEST_F(ProxyTest, VoidMethod0) { in TEST_F() argument
211 .WillOnce(InvokeWithoutArgs(this, &ProxyTest::CheckSignalingThread)); in TEST_F()
215 TEST_F(ProxyTest, Method0) { in TEST_F() argument
218 .WillOnce(DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckSignalingThread), in TEST_F()
223 TEST_F(ProxyTest, ConstMethod0) { in TEST_F() argument
226 .WillOnce(DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckSignalingThread), in TEST_F()
231 TEST_F(ProxyTest, WorkerMethod1) { in TEST_F() argument
235 .WillOnce(DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckWorkerThread), in TEST_F()
240 TEST_F(ProxyTest, ConstMethod1) { in TEST_F() argument
244 .WillOnce(DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckSignalingThread), in TEST_F()
249 TEST_F(ProxyTest, WorkerMethod2) { in TEST_F() argument
254 .WillOnce(DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckWorkerThread), in TEST_F()