• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-816610

packages/H17-Jun-2014-366228

src/H17-Jun-2014-4,3682,897

windows/H17-Jun-2014-229153

.gitignoreH A D17-Jun-2014178 1616

.travis.ymlH A D17-Jun-2014490 2019

AUTHORSH A D17-Jun-201441 42

COPYINGH A D17-Jun-201411.1 KiB203169

ChangeLogH A D17-Jun-20141.7 KiB5442

INSTALLH A D17-Jun-201429 21

Makefile.amH A D03-May-20225.4 KiB15196

Makefile.am.distH A D17-Jun-20142.1 KiB6147

NEWSH A D17-Jun-20140

READMEH A D17-Jun-201414 21

README.mdH A D17-Jun-20141.2 KiB2922

autogen.shH A D17-Jun-20141.9 KiB6436

cmockery2.pc.inH A D17-Jun-2014290 129

cmockery2.specH A D17-Jun-20143.5 KiB11187

configure.acH A D17-Jun-20143.1 KiB121103

makerpm.shH A D17-Jun-20141.8 KiB9364

README

1see README.md
2

README.md

1[![Build Status](https://travis-ci.org/lpabon/cmockery2.svg?branch=master)](https://travis-ci.org/lpabon/cmockery2)
2
3Cmockery tests are compiled into a stand-alone executable and linked
4with the cmockery library, the standard C library and module being
5tested. Any symbols external to the module being tested should be
6mocked - replaced with functions that return values determined by
7the test - within the test application. Even though significant
8differences may exist between the target execution environment of a
9code module and the environment used to test the code the unit
10testing is still valid since its goal is to test the logic of a
11code modules at a functional level and not necessarily all of its
12interactions with the target execution environment.
13
14Other features:
15* Lightweight C Unit test with mocking support
16* JUnit XML report output which can be used with Jenkins
17* Provides design-by-contract support
18
19This project is a successor of http://code.google.com/p/cmockery-staging/
20which is a successor of Google's http://code.google.com/p/cmockery/.
21
22
23# Documentation
24* [Usage Guide](doc/usage.md)
25* [Coverage Support with Jenkins](doc/coverage.md)
26
27# Presentations
28* [Test Methodologies in C](http://slides-lpabon.rhcloud.com/feb24_glusterfs_unittest.html)
29