Relay_Tester/tests/simple_test/simple_test.cpp

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

2024-08-02 19:57:48 +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);
}