mirror of
https://github.com/holub/mame
synced 2025-05-06 14:25:54 +03:00
13 lines
178 B
C++
13 lines
178 B
C++
#ifndef UNITTEST_TESTSUITE_H
|
|
#define UNITTEST_TESTSUITE_H
|
|
|
|
namespace UnitTestSuite
|
|
{
|
|
inline char const* GetSuiteName ()
|
|
{
|
|
return "DefaultSuite";
|
|
}
|
|
}
|
|
|
|
#endif
|