source: git/libpolys/tests/simple_test.h

spielwiese
Last change on this file was aadd638, checked in by Hans Schoenemann <hannes@…>, 6 years ago
use include ".." for singular related .h, p7
  • Property mode set to 100644
File size: 298 bytes
Line 
1#include "misc/auxiliary.h"
2
3class SimplestTestSuite : public CxxTest::TestSuite
4{
5public:
6   void testMyTest()
7   {
8                float fnum = 2.00001f;
9                TS_ASSERT_DELTA (fnum, 2.0f, 0.0001f);
10   }
11
12   void testSIZEOFLONG()
13   {
14      TS_ASSERT( sizeof(long) == SIZEOF_LONG ); // correct config.h?
15   }
16
17};
18
Note: See TracBrowser for help on using the repository browser.