Files
Amar Mahmutbegovic b378383cf5 add Chapter14
2024-11-19 21:29:22 +01:00

13 lines
172 B
C++

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