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