Files
Cpp-in-Embedded-Systems/Chapter18/cib/libs/etl/test/UnitTest++/TestSuite.h
Amar Mahmutbegovic 8634accda5 add Chapter18
2025-02-06 00:19:59 +01:00

13 lines
172 B
C++

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