Files
Cpp-in-Embedded-Systems/Chapter16/fsm/libs/etl/test/UnitTest++/TestSuite.h
Amar Mahmutbegovic 526e6ec009 rename chapters
2025-02-09 13:11:21 +01:00

13 lines
172 B
C++

#ifndef UNITTEST_TESTSUITE_H
#define UNITTEST_TESTSUITE_H
namespace UnitTestSuite
{
inline char const* GetSuiteName ()
{
return "DefaultSuite";
}
}
#endif