GUnit icon indicating copy to clipboard operation
GUnit copied to clipboard

GUnit - Google.Test/Google.Mock/Cucumber on steroids

Results 19 GUnit issues
Sort by recently updated
recently updated
newest added

Will c++20 concept support be added, if using `gcc -std=c++2a -fconcepts` or [the clang saarraz fork with concepts](https://github.com/saarraz/clang-concepts)? If so, any timeframe on that? I have no idea if it's...

I can find lots of code examples on how to use it (in `example/`) but there are no build system files (`CMakeLists.txt`) in those directories. Reading the top-level `CMakeLists.txt`, it...

FakeIt supports up to offset1000, currently the GMock.h header file only supports up to offset127(int). If a user of GUnit mocks an interface with more methods than this it causes...

I'm not doing it myself because I have never really edited the Wikipedia and, having just discovered GUnit, may include some wrong information (i.e. because I'm lazy). But this project...

Below example is taken from the GUnit examples directory. I uncommented the EXPECT_CALL() line. ``` TEST(GMock, ShouldFailDueToUninterestingGetCall) { using namespace testing; StrictGMock mock; //EXPECT_CALL(mock, (get)()) // .WillOnce(Return(true)); // Comment to...

If we are using the "Hi-Perf" Google.Mock feature https://github.com/google/googletest/blob/master/googlemock/docs/CookBook.md#mocking-nonvirtual-methods Then how does this affect the ideal use of GUnit? - [ ] Can we still use the automatic mock generation?...

I have seen that hippomocks supports mocking with multiple inheritance. I settled with GUnit because of the nicer expectation syntax. How is GMock different that creating a vtable for an...

The original googlemock is pretty bad at supporting unique_ptr or rvalue references. Usually I went for the workaround outlined here: https://stackoverflow.com/questions/12088537/workaround-for-gmock-to-support-rvalue-reference Now with GUnit/GMock how would I mock a method...

I am aware that with GUnit there is no more need to have the SetUp and TearDown method declarations, but in my tests I still have it for my own...