High/tests/simple_test/simple_test.cpp

27 lines
225 B
C++
Raw Permalink Normal View History

2024-07-27 18:59:09 +00:00
#include "CppUTest/TestHarness.h"
/*
extern C
{
#include "simple.h"
}
*/
TEST_GROUP(simple_test)
{
void setup()
{
}
void teardown()
{
}
};
TEST(simple_test, passing_test)
{
CHECK_TRUE(1);
}