Mock a method which takes a function as parameter using GMock
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have classes as follows.
I am trying to inject dependency but a function is taking a function pointer.
How to set Expectation for function OnFileLoaded
?
I hope code can clear my question.
Class Dependency
{
void LoadFile()
{this->SignalFileLoaded();}
void SignalFileLoaded()
{
if (on_file_loaded_){on_file_loaded_();}
}
private:
std::function<void()> on_file_loaded_;
}
//////////////////////
class Test<typename T>
{
Test()
{
obj_dep->OnFileLoaded([this]() {
SignalFileLoaded();
});
}
void OnFileLoaded(std::function<void()> const &f)
{on_file_loaded_ = f;}
void SignalFileLoaded()
{
if (on_file_loaded_)
{
on_file_loaded_();
}
}
Void LoadFile()
{ this->SignalFileLoaded();}
void SetDependency(std::shared_ptr<T> obj)
{ obj_dep = obj;}
private:
std::shared_ptr<T> obj_dep;
std::function<void()> on_file_loaded_;
}
Here is my mocked object with my test
MockTest
{
MockTest();
MOCK_METHOD1_T(OnFileLoaded,void(std::function<void()>));
MOCK_METHOD0_T(LoadFile,void());
}
TEST(testing_mock , signal_testing)
{
std::shared_ptr<MockTest> mocked_test;
Test<MockTest> testObj;
//How to set EXPECT_CALL for OnFileLoaded in this scenario
}
I dont know how to set expectation for this method. And it is being called during file loading. Which results Uninteresting function call warning.
c++ linux unit-testing lambda gmock
add a comment |
I have classes as follows.
I am trying to inject dependency but a function is taking a function pointer.
How to set Expectation for function OnFileLoaded
?
I hope code can clear my question.
Class Dependency
{
void LoadFile()
{this->SignalFileLoaded();}
void SignalFileLoaded()
{
if (on_file_loaded_){on_file_loaded_();}
}
private:
std::function<void()> on_file_loaded_;
}
//////////////////////
class Test<typename T>
{
Test()
{
obj_dep->OnFileLoaded([this]() {
SignalFileLoaded();
});
}
void OnFileLoaded(std::function<void()> const &f)
{on_file_loaded_ = f;}
void SignalFileLoaded()
{
if (on_file_loaded_)
{
on_file_loaded_();
}
}
Void LoadFile()
{ this->SignalFileLoaded();}
void SetDependency(std::shared_ptr<T> obj)
{ obj_dep = obj;}
private:
std::shared_ptr<T> obj_dep;
std::function<void()> on_file_loaded_;
}
Here is my mocked object with my test
MockTest
{
MockTest();
MOCK_METHOD1_T(OnFileLoaded,void(std::function<void()>));
MOCK_METHOD0_T(LoadFile,void());
}
TEST(testing_mock , signal_testing)
{
std::shared_ptr<MockTest> mocked_test;
Test<MockTest> testObj;
//How to set EXPECT_CALL for OnFileLoaded in this scenario
}
I dont know how to set expectation for this method. And it is being called during file loading. Which results Uninteresting function call warning.
c++ linux unit-testing lambda gmock
EXPECT_CALL(*mock_test, OnFileLoaded(testing::_)).XXX
?
– Jarod42
Jan 4 at 8:42
but yourclass Test
should take dependency in constructor instead of deferencing null pointer.
– Jarod42
Jan 4 at 8:44
@Jarod42 If i set expectation this way , still GMock give uninteresting function call for OnFileLoaded.
– Miss.Mughal
Jan 4 at 9:40
add a comment |
I have classes as follows.
I am trying to inject dependency but a function is taking a function pointer.
How to set Expectation for function OnFileLoaded
?
I hope code can clear my question.
Class Dependency
{
void LoadFile()
{this->SignalFileLoaded();}
void SignalFileLoaded()
{
if (on_file_loaded_){on_file_loaded_();}
}
private:
std::function<void()> on_file_loaded_;
}
//////////////////////
class Test<typename T>
{
Test()
{
obj_dep->OnFileLoaded([this]() {
SignalFileLoaded();
});
}
void OnFileLoaded(std::function<void()> const &f)
{on_file_loaded_ = f;}
void SignalFileLoaded()
{
if (on_file_loaded_)
{
on_file_loaded_();
}
}
Void LoadFile()
{ this->SignalFileLoaded();}
void SetDependency(std::shared_ptr<T> obj)
{ obj_dep = obj;}
private:
std::shared_ptr<T> obj_dep;
std::function<void()> on_file_loaded_;
}
Here is my mocked object with my test
MockTest
{
MockTest();
MOCK_METHOD1_T(OnFileLoaded,void(std::function<void()>));
MOCK_METHOD0_T(LoadFile,void());
}
TEST(testing_mock , signal_testing)
{
std::shared_ptr<MockTest> mocked_test;
Test<MockTest> testObj;
//How to set EXPECT_CALL for OnFileLoaded in this scenario
}
I dont know how to set expectation for this method. And it is being called during file loading. Which results Uninteresting function call warning.
c++ linux unit-testing lambda gmock
I have classes as follows.
I am trying to inject dependency but a function is taking a function pointer.
How to set Expectation for function OnFileLoaded
?
I hope code can clear my question.
Class Dependency
{
void LoadFile()
{this->SignalFileLoaded();}
void SignalFileLoaded()
{
if (on_file_loaded_){on_file_loaded_();}
}
private:
std::function<void()> on_file_loaded_;
}
//////////////////////
class Test<typename T>
{
Test()
{
obj_dep->OnFileLoaded([this]() {
SignalFileLoaded();
});
}
void OnFileLoaded(std::function<void()> const &f)
{on_file_loaded_ = f;}
void SignalFileLoaded()
{
if (on_file_loaded_)
{
on_file_loaded_();
}
}
Void LoadFile()
{ this->SignalFileLoaded();}
void SetDependency(std::shared_ptr<T> obj)
{ obj_dep = obj;}
private:
std::shared_ptr<T> obj_dep;
std::function<void()> on_file_loaded_;
}
Here is my mocked object with my test
MockTest
{
MockTest();
MOCK_METHOD1_T(OnFileLoaded,void(std::function<void()>));
MOCK_METHOD0_T(LoadFile,void());
}
TEST(testing_mock , signal_testing)
{
std::shared_ptr<MockTest> mocked_test;
Test<MockTest> testObj;
//How to set EXPECT_CALL for OnFileLoaded in this scenario
}
I dont know how to set expectation for this method. And it is being called during file loading. Which results Uninteresting function call warning.
c++ linux unit-testing lambda gmock
c++ linux unit-testing lambda gmock
edited Jan 4 at 3:14
Iman Marashi
2,4652232
2,4652232
asked Jan 4 at 3:05
Miss.MughalMiss.Mughal
11
11
EXPECT_CALL(*mock_test, OnFileLoaded(testing::_)).XXX
?
– Jarod42
Jan 4 at 8:42
but yourclass Test
should take dependency in constructor instead of deferencing null pointer.
– Jarod42
Jan 4 at 8:44
@Jarod42 If i set expectation this way , still GMock give uninteresting function call for OnFileLoaded.
– Miss.Mughal
Jan 4 at 9:40
add a comment |
EXPECT_CALL(*mock_test, OnFileLoaded(testing::_)).XXX
?
– Jarod42
Jan 4 at 8:42
but yourclass Test
should take dependency in constructor instead of deferencing null pointer.
– Jarod42
Jan 4 at 8:44
@Jarod42 If i set expectation this way , still GMock give uninteresting function call for OnFileLoaded.
– Miss.Mughal
Jan 4 at 9:40
EXPECT_CALL(*mock_test, OnFileLoaded(testing::_)).XXX
?– Jarod42
Jan 4 at 8:42
EXPECT_CALL(*mock_test, OnFileLoaded(testing::_)).XXX
?– Jarod42
Jan 4 at 8:42
but your
class Test
should take dependency in constructor instead of deferencing null pointer.– Jarod42
Jan 4 at 8:44
but your
class Test
should take dependency in constructor instead of deferencing null pointer.– Jarod42
Jan 4 at 8:44
@Jarod42 If i set expectation this way , still GMock give uninteresting function call for OnFileLoaded.
– Miss.Mughal
Jan 4 at 9:40
@Jarod42 If i set expectation this way , still GMock give uninteresting function call for OnFileLoaded.
– Miss.Mughal
Jan 4 at 9:40
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54032642%2fmock-a-method-which-takes-a-function-as-parameter-using-gmock%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54032642%2fmock-a-method-which-takes-a-function-as-parameter-using-gmock%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
EXPECT_CALL(*mock_test, OnFileLoaded(testing::_)).XXX
?– Jarod42
Jan 4 at 8:42
but your
class Test
should take dependency in constructor instead of deferencing null pointer.– Jarod42
Jan 4 at 8:44
@Jarod42 If i set expectation this way , still GMock give uninteresting function call for OnFileLoaded.
– Miss.Mughal
Jan 4 at 9:40