CMock - Mock/stub generator for C
Go to file
Mark VanderVoord c1b1ff6350
Merge pull request #255 from jlindgren90/master
Add documentation for :array_size_type and :array_size_name.
2019-10-30 17:02:27 -04:00
config Move all self-testing into a subdirectory, like we did with Unity 2017-04-07 16:27:13 -04:00
docs Add documentation for :array_size_type and :array_size_name. 2019-10-30 16:20:47 -04:00
examples Clean up full header list. (Why didn't this get caught in my local tests?) 2019-07-09 11:14:10 -04:00
lib Address issue #196 to better deal with passing pointer types 2019-10-30 14:10:59 -04:00
scripts Clean up example makefile to properly support externally supported paths. (This is a tiny fix to PR 193) 2019-07-07 14:43:20 -04:00
src Fix off-by-one error in out-of-memory check. 2019-10-30 10:30:25 -04:00
test Verify old parsing issue is gone (see issue #195) 2019-10-30 14:30:18 -04:00
vendor Update to latest Unity 2019-10-30 10:34:37 -04:00
.gitattributes - Added a couple more tests to our details test 2015-12-30 16:33:33 -05:00
.gitignore add .swp (vim swap files) to git ignore list 2016-10-14 14:46:54 +02:00
.gitmodules Updated to latest version of Unity. 2014-07-25 15:13:29 -04:00
.travis.yml Removing mac testing from Travis because Travis is always breaking it. *sigh* 2019-10-23 08:15:40 -04:00
Gemfile - fixed license to make it standard MIT license. 2014-12-16 10:20:56 -05:00
LICENSE.txt Move license for GitHub detection 2018-11-13 21:11:15 -05:00
meson.build Upgrade Meson version too 0.52.0 2019-10-12 09:22:31 -07:00
README.md Add "cd test" to README.md for running rake 2018-07-18 14:05:55 +01:00

CMock - Mock/stub generator for C

CMock Build Status

Getting Started

If you're using Ceedling, there is no need to install CMock. It will handle it for you. For everyone else, the simplest way is to grab it off github. You can also download it as a zip if you prefer. The Github method looks something like this:

> git clone --recursive https://github.com/throwtheswitch/cmock.git
> cd cmock
> bundle install # Ensures you have all RubyGems needed

If you plan to help with the development of CMock (or just want to verify that it can perform its self tests on your system) then you can enter the test directory and then ask it to test:

> cd test
> rake # Run all CMock self tests

API Documentation