-
when I debug MSUnit test code I get
```
System.MissingMethodException occurred
Message=Cannot create an instance of an interface.
Source=mscorlib
StackTrace:
at System.RuntimeTypeHandle…
-
Is there a stable release/tag?
-
I may just be doing it wrong, but I can't find a way to return from a const overload. I checked the project's unit test code and didn't find any examples.
Support for the following situation would b…
-
In such case, the Access Violation exception is thrown at:
VTUtils.hpp:33
Environment: Windows 7
Compilers:
VS 2013 (64 bit)
as well as
gcc (i686-posix-dwarf-rev2, Built by MinGW-W64 project) 4.9.…
-
FakeIt currently only supports GCC and MSVC. What's required to support clang?
-
Hi,
First let me start by saying that this is a great framework. I ran across it a few hours ago and already I was able to use it in a few unit tests, eliminating some self made mocking classes.
It a…
-
I've been taking a look at this framework and I find it very promising - I haven't seen much else quite like it yet.
However, one feature I feel would be very useful is the ability to specify only so…
-
When mocking an interface class I get the following warnings:
- fakeit/include/mockutils/FakeObject.hpp:31: warning: ISO C++ forbids zero-size array [-Wpedantic]
char instanceArea[sizeof(C) -sizeof(…
-
Building on MinGW 4.8.1 (and 4.8.2)
```
../include/fakeit/VerifyNoOtherInvocationsVerificationProgress.hpp:24:42: note:
in expansion of macro 'THROWS'
~VerifyNoOtherInvocationsExpectation() THROWS…
-
I have a interface like this:
``` cpp
struct Change {
virtual void change(uint8_t r, uint8_t g, uint8_t b) =0;
};
```
In a test code like
``` cpp
function assertChanged(Mock& mock, uint8_t v1, …