Tagged Questions
3
votes
2answers
208 views
Does Mock Objects in C++ Always Requires Virtual Methods or Templates?
Suppose I have classes
class Inner {
public:
void doSomething();
};
class Outer {
public:
Outer(Inner *inner); // Dependency injection.
void callInner();
};
Proper unit-testing ...
3
votes
1answer
770 views
C++ Mock/Test boost::asio::io_stream - based Asynch Handler
I've recently returned to C/C++ after years of C#. During those years I've found the value of Mocking and Unit testing.
Finding resources for Mocks and Units tests in C# is trivial. WRT Mocking, not ...
0
votes
2answers
578 views
Google Mock: leaked mock object found at program exit?
When I define my test as follows it works.
TEST(MyService, WhenCalled_DoesTheRightThingTM) {
// Arrange
ThirdPartyClassFake stub;
EXPECT_CALL(stub, GetFirstName())
...
0
votes
3answers
603 views
Unit testing and mocking small, value-like classes in C++
I am trying to set up some unit tests for an existing c++ project.
Here's the setup:
I have chosen Google Mock, which includes Google Test. I have added another project (called Tests) to the Visual ...