source: git/libpolys/tests/simple_test.h

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