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