mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-07 10:31:43 +01:00
19 lines
312 B
C
19 lines
312 B
C
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "unity_fixture.h"
|
||
|
|
#include "unity_fixture_extras.h"
|
||
|
|
|
||
|
|
static void run_all_tests(void)
|
||
|
|
{
|
||
|
|
RUN_TEST_GROUP(mpi);
|
||
|
|
}
|
||
|
|
|
||
|
|
void app_main(void)
|
||
|
|
{
|
||
|
|
UNITY_MAIN_FUNC(run_all_tests);
|
||
|
|
}
|