cheat icon indicating copy to clipboard operation
cheat copied to clipboard

Convenient unit testing framework for the C programming language.

Results 4 cheat issues
Sort by recently updated
recently updated
newest added

Although it may sound dumb not to use directly `cheat_assert()`, it actually may be useful to have a `cheat_assert_bool()` specialized function, as it allow to show both the expected result...

There is no way to identify which tests are failing. We get a message saying "X successful and Y failed of Z run" and a some red colored characters but...

`Wunused-function` triggers if all `cheat_assert_...` are from `cheats.h` ``` third_party/cheat/cheat.h:1607:13: warning: ‘cheat_check’ defined but not used [-Wunused-function] static void cheat_check(struct cheat_suite* const suite, ```

Capturing streams on Windows uses the standard streams instead of dedicated pipes. There are only two standard streams, so assertions are mixed with other output. Using a named pipe should...

enhancement