CMock - Mock/stub generator for C
Go to file
2017-04-25 08:18:28 -04:00
config Move all self-testing into a subdirectory, like we did with Unity 2017-04-07 16:27:13 -04:00
docs Switching to markdown documentation. Add coding standard. 2017-04-07 13:36:44 -04:00
examples Add examples to the automated testing in travis. Make err-on-fail optional on both examples (disabled during ci) 2017-04-07 22:22:38 -04:00
lib Improve handling of braces in function definition 2017-04-05 20:38:59 +02:00
release this is a minor release 2017-04-25 08:18:28 -04:00
scripts More complete error handling when suppressing errors in the example 2017-04-07 23:06:38 -04:00
src Before memcpy'ing when returning through pointer, check that destination is not NULL. 2017-02-16 17:05:35 +01:00
test Add examples to the automated testing in travis. Make err-on-fail optional on both examples (disabled during ci) 2017-04-07 22:22:38 -04:00
vendor this is a minor release 2017-04-25 08:18:28 -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 Update .travis.yml 2017-04-07 22:40:33 -04:00
Gemfile - fixed license to make it standard MIT license. 2014-12-16 10:20:56 -05:00
README.md Update README.md 2017-04-10 10:04:20 -04: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:

> rake # Run all CMock self tests

API Documentation