source: git/libpolys/tests/simple_test.h @ a44bcf

spielwiese
Last change on this file since a44bcf was 4aa8610, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
created libpolys/tests and set up the beginning of a test-suite using cxxtest
  • Property mode set to 100644
File size: 170 bytes
Line 
1
2
3
4
5class SimplestTestSuite : public CxxTest::TestSuite
6{
7public:
8   void testMyTest()
9   {
10                float fnum = 2.00001f;         
11                TS_ASSERT_DELTA (fnum, 2.0f, 0.0001f);
12   }
13};
14
Note: See TracBrowser for help on using the repository browser.