mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
13 lines
172 B
C++
13 lines
172 B
C++
#ifndef UNITTEST_TESTSUITE_H
|
|
#define UNITTEST_TESTSUITE_H
|
|
|
|
namespace UnitTestSuite
|
|
{
|
|
inline char const* GetSuiteName ()
|
|
{
|
|
return "DefaultSuite";
|
|
}
|
|
}
|
|
|
|
#endif
|