My Project
simple_test.h
Go to the documentation of this file.
1#include "misc/auxiliary.h"
2
4{
5public:
6 void testMyTest()
7 {
8 float fnum = 2.00001f;
9 TS_ASSERT_DELTA (fnum, 2.0f, 0.0001f);
10 }
11
13 {
14 TS_ASSERT( sizeof(long) == SIZEOF_LONG ); // correct config.h?
15 }
16
17};
18
#define TS_ASSERT_DELTA(x, y, d)
Definition: TestSuite.h:373
#define TS_ASSERT(e)
Definition: TestSuite.h:239
All the auxiliary stuff.
void testSIZEOFLONG()
Definition: simple_test.h:12