├── LICENSE ├── Makefile ├── README.md ├── cpp11 ├── basic_type.h └── impl.h ├── cpp_free_mock.h ├── example ├── Makefile ├── test_anonymous_mocker.cpp ├── test_global_function.cpp ├── test_large_inherit_hierarchy.cpp ├── test_member_function.cpp ├── test_other_library_function.cpp ├── test_static_member_function.cpp └── test_throw_exception.cpp ├── hello_world.cpp ├── impl.h ├── internal_macro.h ├── posix └── runtime_patch_impl.h ├── runtime_patch.h ├── test ├── Makefile ├── posix │ ├── Makefile │ └── runtime_patch_impl_test.cpp └── runtime_patch_test.cpp └── x86 └── runtime_patch_impl.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/README.md -------------------------------------------------------------------------------- /cpp11/basic_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/cpp11/basic_type.h -------------------------------------------------------------------------------- /cpp11/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/cpp11/impl.h -------------------------------------------------------------------------------- /cpp_free_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/cpp_free_mock.h -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/test_anonymous_mocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/test_anonymous_mocker.cpp -------------------------------------------------------------------------------- /example/test_global_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/test_global_function.cpp -------------------------------------------------------------------------------- /example/test_large_inherit_hierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/test_large_inherit_hierarchy.cpp -------------------------------------------------------------------------------- /example/test_member_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/test_member_function.cpp -------------------------------------------------------------------------------- /example/test_other_library_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/test_other_library_function.cpp -------------------------------------------------------------------------------- /example/test_static_member_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/test_static_member_function.cpp -------------------------------------------------------------------------------- /example/test_throw_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/example/test_throw_exception.cpp -------------------------------------------------------------------------------- /hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/hello_world.cpp -------------------------------------------------------------------------------- /impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/impl.h -------------------------------------------------------------------------------- /internal_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/internal_macro.h -------------------------------------------------------------------------------- /posix/runtime_patch_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/posix/runtime_patch_impl.h -------------------------------------------------------------------------------- /runtime_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/runtime_patch.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/posix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/test/posix/Makefile -------------------------------------------------------------------------------- /test/posix/runtime_patch_impl_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/test/posix/runtime_patch_impl_test.cpp -------------------------------------------------------------------------------- /test/runtime_patch_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/test/runtime_patch_test.cpp -------------------------------------------------------------------------------- /x86/runtime_patch_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzc9047/CppFreeMock/HEAD/x86/runtime_patch_impl.h --------------------------------------------------------------------------------