blob: 70f3c67e5c95fffee5a9c3d13ddd0e04a2a53d0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "../minunit/minunit.h"
MU_TEST_SUITE(testsuite_deco);
int main(int argc, const char *argv[])
{
MU_RUN_SUITE(testsuite_deco, NULL);
MU_REPORT();
return MU_EXIT_CODE;
}
|