None
EN
Comment on cmocka – a unit testing framework for C by Marina
['Andreas Schneider']
Comments for Andreas Schneider
When I started to work on libssh, a library implementing the SSH protocol, I wrote unit tests with check too. cmocka is a great unit testing framework with support for mock objects. Instead of calling the real objects, the tested object calls a mock object that merely asserts that the correct methods were called, with the expected parameters, in the correct order.