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