History Graph
History Graph
Commit | Author | Details | Committed | |||
---|---|---|---|---|---|---|
2d970ee3bad5 | zhanyong.wan | Adds the IsNull() matcher. | Sep 24 2009 | |||
f7af24c7de14 | zhanyong.wan | Simplifies gmock code using gtest's OS-indicating macros. | Sep 24 2009 | |||
f47a2df57bd8 | zhanyong.wan | Makes gmock compile on minGW, which uses gcc 3.4.5. | Sep 24 2009 | |||
4bd79e4f25a8 | zhanyong.wan | Simplifies the definition of NativeArray. Works around a VC bug in StrictMock… | Sep 16 2009 | |||
f5e1ce5b9237 | zhanyong.wan | Adds new matcher Pair(). Replaces GMOCK_CHECK_ with GTEST_CHECK_ (by Vlad… | Sep 16 2009 | |||
2b43a9ecd16e | zhanyong.wan | Adds mutable_impl() and impl() to PolymorphicMatcher (by Zhanyong Wan); Enables… | Sep 1 2009 | |||
0ea67f88aea2 | zhanyong.wan | Improves protobuf print format. | Aug 14 2009 | |||
9571b28675a5 | zhanyong.wan | Removes duplicated definition of SetArgumentPointee (by Vlad Losev); Makes… | Aug 7 2009 | |||
a18423e0ee0c | zhanyong.wan | Re-organizes the file structure for actions. | Jul 23 2009 | |||
1afe1c7971e6 | zhanyong.wan | Adds the ReturnArg<k>() action (by Tim Hockin); refactors gmock-matchers.h (by… | Jul 22 2009 | |||
387bdd551d4a | zhanyong.wan | Makes ByRef(x) printable as a reference to x. | Jul 20 2009 | |||
b5937dab6969 | zhanyong.wan | Adds the Key() matcher, by Marcus Borger. | Jul 16 2009 | |||
41b9b0b56145 | zhanyong.wan | Implements Expectation, ExpectationSet, and After for specifying expectation… | Jul 1 2009 | |||
4019819dbb53 | zhanyong.wan | A trivial comment fix. | Jul 1 2009 | |||
4cd148e588c7 | zhanyong.wan | Removes the .WithArguments() clause from ON_CALL and EXPECT_CALL. | Jun 11 2009 | |||
bf55085d456e | zhanyong.wan | Implements .With() as a synonym of .WithArguments(); implements AllArgs(m) as a… | Jun 9 2009 | |||
2661c6821a4d | zhanyong.wan | Implements the Args<k1, ..., kn>(m) matcher. | Jun 9 2009 | |||
b82431625d18 | zhanyong.wan | Makes all container matchers work with (possibly multi-dimensional) native… | Jun 4 2009 | |||
9413f2ff615a | zhanyong.wan | Avoids unnecessary printing of call into to internal buffers; Made the… | May 29 2009 | |||
16cf473930c0 | zhanyong.wan | Finishes SafeMatcherCast by catching lossy arithmetic conversions at compile… | May 14 2009 | |||
c6a412397bc9 | zhanyong.wan | Adds more tests for using SetArgumentPointee with protobufs; works around a… | May 14 2009 | |||
18490653e80d | zhanyong.wan | Partially implemented SafeMatcherCast (by Vlad Losev); updated the… | May 11 2009 | |||
e7bb5ededa4d | zhanyong.wan | Improves the error message for leaked mocks to include the test name (by… | May 6 2009 | |||
125783fb8748 | zhanyong.wan | Fixes tr1 tuple's path when compiled with gcc version < 4.0.0 (by Zhanyong Wan). | May 5 2009 | |||
df35a763b9d9 | zhanyong.wan | Implements --gmock_catch_leaked_mocks and Mock::AllowLeak. | Apr 23 2009 | |||
1c8eb1c059d6 | zhanyong.wan | Adds actions ReturnNew<T>(...) and DeleteArg<k>(), by Jason Hsueh. | Apr 9 2009 | |||
33c0af07c4c2 | zhanyong.wan | Makes gmock compile clean with gcc -Wall -Wextra. | Apr 3 2009 | |||
7e571ef537f0 | zhanyong.wan | Makes googlemock compile with gcc 3.3. | Mar 31 2009 | |||
946bc64fcf47 | zhanyong.wan | Fixes an error when compiling with gcc 4.4. | Mar 31 2009 | |||
3fbd2dd02081 | zhanyong.wan | Makes gmock compile with gcc -Wall -Wextra -Wno-unused-parameter. | Mar 26 2009 | |||
68be111b4c82 | zhanyong.wan | Allows mock methods overloaded on argument number or the const-ness of this… | Mar 25 2009 | |||
5b5d62f19019 | zhanyong.wan | Makes the code compile on Windows CE. | Mar 12 2009 | |||
6f14769e86f1 | zhanyong.wan | Allows a mock object to delete itself in an action. By Simon Bowden. | Mar 3 2009 | |||
652540a278e5 | zhanyong.wan | Cleans up macro definitions. | Feb 24 2009 | |||
1bee7b2f1dbf | zhanyong.wan | Implements Contains(element) matcher. By Gary Morain. | Feb 20 2009 | |||
7f4c2c0f95a6 | zhanyong.wan | Adds two actions: SaveArg and SetArgReferee. | Feb 19 2009 | |||
38ca64dd5f8d | zhanyong.wan | Fixes link errors due to an MS VC bug. By Vlad Losev. | Feb 19 2009 | |||
4a5330d3d6e5 | zhanyong.wan | Implements custom description string for MATCHER*. | Feb 19 2009 | |||
e0d051ea64dd | zhanyong.wan | Makes sure all internal macros are named GMOCK_*_. No functionality is changed. | Feb 19 2009 | |||
ce198ff89977 | zhanyong.wan | Implements the MATCHER* macros. | Feb 12 2009 | |||
2f0849fef488 | zhanyong.wan | Fixes the "ambiguous overload" compiler error when a mock function takes an… | Feb 11 2009 | |||
e1cdce5f761e | zhanyong.wan | Implements action Throw(exception). | Feb 6 2009 | |||
c069d7fe27bf | zhanyong.wan | Improves ACTION* to allow explicit instantiating with reference types. | Feb 2 2009 | |||
5b95fa7b1602 | zhanyong.wan | Improves error messages for undefined return value (by Sverre Sundsdal)… | Jan 27 2009 | |||
6a896b5ec607 | zhanyong.wan | Implements ContainerEq. | Jan 16 2009 | |||
326aa564127a | shiqian | Implements the ACTION* macros. | Jan 9 2009 | |||
c97f2f560bc6 | shiqian | Fixes compatibility with gcc 4.3's tuple implementation. | Dec 11 2008 | |||
e35fdd936d13 | shiqian | Initial drop of Google Mock. The files are incomplete and thus may not build… | Dec 10 2008 |
c4science · Help