mirror of
https://github.com/loopj/wavephoenix.git
synced 2025-12-28 04:36:48 +00:00
29 lines
301 B
C
29 lines
301 B
C
#include "unity.h"
|
|
|
|
extern void test_bch3121();
|
|
extern void test_packet();
|
|
|
|
__attribute__((weak)) void suiteSetUp(void)
|
|
{
|
|
}
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
UNITY_BEGIN();
|
|
|
|
suiteSetUp();
|
|
|
|
test_bch3121();
|
|
test_packet();
|
|
|
|
return UNITY_END();
|
|
}
|