telldus/telldus-core/tests/common/CommonTests.h
Micke Prag b56823a6e7 Some compilers seems to optimize away our tests. Compiling them
statically and force initiating them seems to do the trick.
2013-05-17 11:26:30 +02:00

11 lines
196 B
C++

#ifndef COMMONTESTS_H
#define COMMONTESTS_H
#include "StringsTest.h"
namespace CommonTests {
inline void setup() {
CPPUNIT_TEST_SUITE_REGISTRATION (StringsTest);
}
}
#endif // COMMONTESTS_H