turtle icon indicating copy to clipboard operation
turtle copied to clipboard

C++ mock object library for Boost

Results 16 turtle issues
Sort by recently updated
recently updated
newest added

We recently upgraded to boost 1.80.0 in combination with the latest turtle library. In the compilation of our project we are getting te following warnings with turtle `/opt/boost_1_80_0/include/boost/bind.hpp:41:1: note: #pragma...

What is the purpose of the empty files defined1/2.cpp and defined.hpp? They get compiled for each test (there are >100 tests) and slow down the test/build considerably Remove them? Similar...

Hello, I am currently testing a feature of software that requires a hardware component, and my solution to that was to create a partially mocked class of the class being...

When using turtle mock to mock objects that have virtual functions, frequently those virtual functions are intended to have their base implementation called. Turtle mock has no mechanism to do...

During debugging I found that in a lot of the turtle code `boost::optional` instances are passed by value. This leads to a constructor and destructor call on each call making...

We have some methods which are declared noexcept. Currently, we used proxy methods to work around this. Is there another way? Is there an interest in adding it to the...

Are there any plans for C++11/C++14 inside the framework? I believe quite some trickery and macros can be removed which makes the code cleaner to understand and use. Furthermore `override`...

Hi there, First of, let me just say that your program has made my job MUCH easier over the past month since I started using it, so kudos to you....

Hello, When using turtle, I'm aware of the expectation fulfilled and unexpected call messages are designed to let you know if you miss a mocked class function call, but is...

Hello, I am currently trying to test out mocking a class that has parameters in its constructor, how would i implement that using MOCK_BASE_CLASS? In Visual Studio, there are no...