21 lines
211 B
C
Executable file
21 lines
211 B
C
Executable file
|
|
#ifdef TEST
|
|
|
|
#include "unity.h"
|
|
|
|
#include "crc32.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_crc32_NeedToImplement(void)
|
|
{
|
|
TEST_IGNORE_MESSAGE("Need to Implement crc32");
|
|
}
|
|
|
|
#endif // TEST
|