Searched refs:Bar3 (Results 1 – 5 of 5) sorted by relevance
/external/google-breakpad/src/testing/test/ |
D | gmock_output_test_.cc | 56 MOCK_METHOD2(Bar3, void(int x, int y)); 79 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F() 80 foo_.Bar3(0, 0); // Expected call in TEST_F() 101 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F() 103 foo_.Bar3(1, 0); // Unexpected call in TEST_F() 104 foo_.Bar3(0, 0); // Expected call in TEST_F() 115 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F() 117 foo_.Bar3(0, 0); // Expected call in TEST_F() 118 foo_.Bar3(0, 1); // Excessive call in TEST_F() 126 foo_.Bar3(0, 1); // Uninteresting call in TEST_F() [all …]
|
D | gmock_output_test_golden.txt | 13 FILE:#: EXPECT_CALL(foo_, Bar3(0, _)) invoked 16 FILE:#: Mock function call matches EXPECT_CALL(foo_, Bar3(0, _))... 17 Function call: Bar3(0, 0) 48 Function call: Bar3(1, 0) 51 FILE:#: EXPECT_CALL(foo_, Bar3(0, _))... 68 Function call: Bar3(0, 1) 84 Function call: Bar3(0, 1)
|
/external/gmock/test/ |
D | gmock_output_test_.cc | 57 MOCK_METHOD2(Bar3, void(int x, int y)); 80 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F() 81 foo_.Bar3(0, 0); // Expected call in TEST_F() 102 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F() 104 foo_.Bar3(1, 0); // Unexpected call in TEST_F() 105 foo_.Bar3(0, 0); // Expected call in TEST_F() 116 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F() 118 foo_.Bar3(0, 0); // Expected call in TEST_F() 119 foo_.Bar3(0, 1); // Excessive call in TEST_F() 127 foo_.Bar3(0, 1); // Uninteresting call in TEST_F() [all …]
|
D | gmock_output_test_golden.txt | 13 FILE:#: EXPECT_CALL(foo_, Bar3(0, _)) invoked 16 FILE:#: Mock function call matches EXPECT_CALL(foo_, Bar3(0, _))... 17 Function call: Bar3(0, 0) 48 Function call: Bar3(1, 0) 51 FILE:#: EXPECT_CALL(foo_, Bar3(0, _))... 68 Function call: Bar3(0, 1) 84 Function call: Bar3(0, 1)
|
/external/clang/test/SemaCXX/ |
D | virtual-override.cpp | 175 struct Bar3 : Foo3 { struct 180 Bar3<int> b3i; // okay in test3() 181 Bar3<float> b3f; // expected-error{{is an abstract class}} in test3()
|