blob: 3e4a980cd13c439b9d110f0fecd7f75f7892703b (
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;
}
|