All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.libuiohook.test.minunit.h Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
// MinUnit -- A minimal unit testing framework for C
#define mu_assert(message, test) do { if (!(test)) return message; } while (0)
#define mu_run_test(test) do { char *message = test(); tests_run++; if (message) return message; } while (0)

extern int tests_run;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy