Lines Matching refs:MockBar
101 class MockBar { class
103 explicit MockBar(const std::string& s) : str_(s) {} in MockBar() function in testing::gmock_nice_strict_test::MockBar
105 MockBar(char a1, char a2, std::string a3, std::string a4, int a5, int a6, in MockBar() function in testing::gmock_nice_strict_test::MockBar
112 virtual ~MockBar() = default;
122 MockBar(const MockBar&) = delete;
123 MockBar& operator=(const MockBar&) = delete;
276 NiceMock<MockBar> nice_bar("hi"); in TEST()
286 NiceMock<MockBar> nice_bar('a', 'b', "c", "d", 'e', 'f', "g", "h", true, in TEST()
386 NaggyMock<MockBar> naggy_bar("hi"); in TEST()
396 NaggyMock<MockBar> naggy_bar('0', '1', "2", "3", '4', '5', "6", "7", true, in TEST()
486 StrictMock<MockBar> strict_bar("hi"); in TEST()
496 StrictMock<MockBar> strict_bar('a', 'b', "c", "d", 'e', 'f', "g", "h", true, in TEST()