source: git/libpolys/tests/simple_test.h @ 9f7665

spielwiese
Last change on this file since 9f7665 was 9f7665, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Removed HAVE_CONFIG guards fix: fixed the inclusion of configure-generated *config.h's
  • Property mode set to 100644
File size: 311 bytes
Line 
1
2
3
4#include <misc/auxiliary.h>
5
6class SimplestTestSuite : public CxxTest::TestSuite
7{
8public:
9   void testMyTest()
10   {
11                float fnum = 2.00001f;         
12                TS_ASSERT_DELTA (fnum, 2.0f, 0.0001f);
13   }
14   
15   void testSIZEOFLONG()
16   {
17      TS_ASSERT( sizeof(long) == SIZEOF_LONG ); // correct config.h?
18   }
19   
20};
21
Note: See TracBrowser for help on using the repository browser.