mirror of
https://github.com/Genaker/LoraSA.git
synced 2026-03-28 17:42:59 +01:00
22 lines
274 B
C++
22 lines
274 B
C++
#include <unity.h>
|
|
|
|
void test_rssi();
|
|
void test_detect();
|
|
void test_push();
|
|
|
|
void setUp(void) {}
|
|
|
|
void tearDown(void) {}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
UNITY_BEGIN();
|
|
|
|
RUN_TEST(test_rssi);
|
|
RUN_TEST(test_detect);
|
|
|
|
RUN_TEST(test_push);
|
|
|
|
UNITY_END();
|
|
}
|