mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
13 lines
175 B
C
13 lines
175 B
C
|
#include "unity.h"
|
||
|
#include "unity_fixture.h"
|
||
|
|
||
|
static void run_all_tests(void)
|
||
|
{
|
||
|
RUN_TEST_GROUP(stdatomic);
|
||
|
}
|
||
|
|
||
|
void app_main(void)
|
||
|
{
|
||
|
UNITY_MAIN_FUNC(run_all_tests);
|
||
|
}
|