1 Star 0 Fork 12

ld/mockcpp

forked from sinojelly/mockcpp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

mockcpp --- A C/C++ Mock Framework ------------------------------------- https://github.com/sinojelly/mockcpp https://gitee.com/sinojelly/mockcpp

mockcpp is a jmock-like generic C/C++ Mock Framework, which doesn't use complex template technique which will result in very heavy compiling overhead.

C/C++ test framework

This project provided two tools for C/C++ testing.

Name Description Path
mockcpp C/C++ mock framework mockcpp
testngpp C/C++ test framework mockcpp/tests/3rdparty/testngpp

The sample project to use these tools is at :
https://gitee.com/sinojelly/testngpp-mockcpp-sample

You can use mockcpp with other C/C++ test framework, such as gtest, Catch2, CppUTest etc. The sample projects are at:
https://gitee.com/sinojelly/gtest-with-mockcpp
https://gitee.com/sinojelly/catch2-with-mockcpp

You can use mockcpp testngpp prebuilt libraries and header files, or use their source code.

If you use the prebuilt libraries, be sure they are built on the same os and compiler as the project that is being tested.

mockcpp features

OS Compiler Virtual method mock Global function mock Overloaded function mock
Linux GCC Yes Yes Yes
Win10 MinGW Yes Yes Yes
Win10 VS2019 Yes No Yes

testngpp features

OS Compiler Base function Memory leak check Run in Sandbox Parameterized test
Linux GCC Yes Yes Yes Yes
Win10 MinGW Yes No No Yes
Win10 VS2019 Yes Yes Yes Yes

Sample code

Testngpp parameterized test sample

FIXTURE(DataDrivenTest)
{
	DATA_PROVIDER( mydata, 3
		, DATA_GROUP(1, 2, 3) 
		, DATA_GROUP(77, 20, 97) 
		, DATA_GROUP(101, 503, 604));

	// @test(data="mydata")
	PTEST( (int a, int b, int c), this is a parameterized test)
	{
		ASSERT_EQ(c, add(a, b));
	}
};

Documents for user

New Build System Description(recommended for user and developers)
Mockcpp manual english
Mockcpp manual chinese
Mockcpp simple instruction (Chinese, recommended)
Testngpp simple instruction (Chinese, recommended)
Testngpp user manual (Chinese)

Documents for developer

Advanced Guide of Mockcpp
Mockcpp version history
Software Architecture (Chinese)
Mockcpp configure parameter
Mockcpp Build Guide (a bit old)
Mockcpp Install Guide (old)

Other documents for reference

Testngpp MSVC Installation (old)
Testngpp Introduction

Email to the current maintainers may be sent to darwin.yuan@gmail.com, sinojelly@163.com.

空文件

简介

Two C/C++ testing tools, mockcpp and testngpp. 展开 收起
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ldlib/mockcpp.git
git@gitee.com:ldlib/mockcpp.git
ldlib
mockcpp
mockcpp
master

搜索帮助