blob: eb352cb95e57a2e04bec3a5aa37831374020809b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CPPUNITTEST_CORESUITE_H
#define CPPUNITTEST_CORESUITE_H
#include <cppunit/Portability.h>
#include <string>
inline std::string coreSuiteName()
{
return "Core";
}
#endif // CPPUNITTEST_CORESUITE_H
|