12 lines
132 B
C++
12 lines
132 B
C++
#include <unity.h>
|
|
#ifdef UNIT_TEST
|
|
|
|
|
|
int main( int argc, char **argv) {
|
|
UNITY_BEGIN();
|
|
|
|
UNITY_END();
|
|
}
|
|
|
|
|
|
#endif //UNIT_TEST
|