blob: 55761ae72f60ccd81be2d7daf49ddc3842a0da91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "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;
}
|