我在模拟函数EXPECT_CALL
上调用display()
,但它返回运行时错误
Actual function call count doesn't match EXPECT_CALL(*mock, display())...
./GTest_static_example.tst
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from GTest_static_example
[ RUN ] GTest_static_example.case1
inside the GTEST_static_class:: display
display called from GTest_static_example
package/web/webscr/GTest_static_example.cpp:70: Failure
Actual function call count doesn't match EXPECT_CALL(*mock, display())...
Expected: to be called once
Actual: never called - unsatisfied and active
[ FAILED ] GTest_static_example.case1 (0 ms)
[----------] 1 test from GTest_static_example (0 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (0 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 1 test, listed below:
[ FAILED ] GTest_static_example.case1
1 FAILED TEST
#include<iostream>
using namespace std;
class GTEST_static_class
{
public:
GTEST_static_class()
{}
void display()
{
cout<< "inside the GTEST_static_class:: display " <<endl;
}
};
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <iostream>
#include "GTEST_static_class.h"
using namespace std;
using ::testing::Return;
class GTest_static_example : public::testing::Test
{
public:
virtual void SetUp();
virtual void TearDown();
void call_display()
{
GTEST_static_class *_class = new GTEST_static_class();
_class->display();
cout<<"display called from GTest_static_example"<<endl;
}
};
class MockGTEST_static_class : public GTEST_static_class
{
public:
MockGTEST_static_class():GTEST_static_class()
{}
MOCK_METHOD0(display, void());
};
int main(int argc, char* argv[])
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
void GTest_static_example::SetUp()
{}
void GTest_static_example::TearDown()
{}
TEST_F(GTest_static_example, case1)
{
MockGTEST_static_class *mock = new MockGTEST_static_class();
EXPECT_CALL(*mock,display()).WillOnce(Return());
call_display();
delete mock;
}
答案 0 :(得分:1)
尝试更多类似的内容:
#include <iostream>
#include <gtest/gtest.h>
#include <gmock/gmock.h>
class GTEST_static_class {
public:
virtual void display() { std::cout << "inside the GTEST_static_class:: display\n"; }
virtual ~GTEST_static_class() {}
};
class MockGTEST_static_class : public GTEST_static_class {
public:
MOCK_METHOD0(display, void());
};
class GTest_static_example : public ::testing::Test {
public:
void call_display(GTEST_static_class *instance) {
instance->display();
std::cout << "display called from GTest_static_example\n";
}
};
int main(int argc, char * argv[]) {
::testing::InitGoogleTest(&argc,argv);
return RUN_ALL_TESTS();
}
TEST_F(GTest_static_example, case1) {
MockGTEST_static_class mock;
EXPECT_CALL(mock, display()).WillOnce(::testing::Return());
call_display(&mock);
}
您需要传递您期望的类的实际实例。此外,如果您希望模拟能够覆盖它,则需要使void display();
为虚拟。遗憾的是忘记添加virtual
不会产生任何编译器警告或错误 - 这只是你需要注意的事情。你还应该使GTEST_static_class
的析构函数为虚拟,以避免切片。