blob: 75605ee5d0d9dc94ef4c16026fae500e350d9808 (
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);
MU_REPORT();
return MU_EXIT_CODE;
}
|