CMock - Mock/stub generator for C
Go to file
2017-09-11 15:51:44 -04:00
config Move all self-testing into a subdirectory, like we did with Unity 2017-04-07 16:27:13 -04:00
docs - Renamed :strict_mock_calling option to :fail_on_unexpected_calls for clarity. 2017-09-08 14:54:55 -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 Fix recent const changes to account for special (char*) handling. 2017-09-08 15:20:57 -04:00
release Prepare to publish latest version 2017-09-11 15:51:44 -04:00
scripts Try to fix CI 2017-09-11 19:45:42 +02:00
src Before memcpy'ing when returning through pointer, check that destination is not NULL. 2017-02-16 17:05:35 +01:00
test Merge pull request #144 from jlindgren90/master 2017-09-11 15:05:13 -04:00
vendor Prepare to publish latest version 2017-09-11 15:51:44 -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