Lines Matching refs:mock
48 Mock mock; in TEST() local
49 EXPECT_CALL(mock, method0()).Times(1); in TEST()
50 EXPECT_CALL(mock, method1(9)).Times(1); in TEST()
51 EXPECT_CALL(mock, method2(9, 8)).Times(1); in TEST()
52 EXPECT_CALL(mock, method3(9, 8, 7)).Times(1); in TEST()
53 EXPECT_CALL(mock, method4(9, 8, 7, 6)).Times(1); in TEST()
55 createCCThreadTask(&mock, &Mock::method0)->performTask(); in TEST()
56 createCCThreadTask(&mock, &Mock::method1, 9)->performTask(); in TEST()
57 createCCThreadTask(&mock, &Mock::method2, 9, 8)->performTask(); in TEST()
58 createCCThreadTask(&mock, &Mock::method3, 9, 8, 7)->performTask(); in TEST()
59 createCCThreadTask(&mock, &Mock::method4, 9, 8, 7, 6)->performTask(); in TEST()