blob: 492d054160802c2a438ea715f7879eedbda40c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CPPUNITTEST_OUTPUTSUITE_H
#define CPPUNITTEST_OUTPUTSUITE_H
#include <cppunit/Portability.h>
#include <string>
inline std::string outputSuiteName()
{
return "Output";
}
#endif // CPPUNITTEST_OUTPUTSUITE_H
|