mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
27 lines
376 B
C
27 lines
376 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "unity.h"
|
|
|
|
TEST_CASE("Test 1", "[test]")
|
|
{
|
|
TEST_ASSERT(1 == 1);
|
|
}
|
|
|
|
TEST_CASE("Test 2", "[test]")
|
|
{
|
|
TEST_ASSERT(1 == 1);
|
|
}
|
|
|
|
TEST_CASE("Test 3", "[test]")
|
|
{
|
|
TEST_ASSERT(1 == 1);
|
|
}
|
|
|
|
TEST_CASE("Test 4", "[test]")
|
|
{
|
|
TEST_ASSERT(1 == 1);
|
|
}
|