1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef _TESTCASTS_FBASICS_H
- #define _TESTCASTS_FBASICS_H
- #include <cppunit/extensions/HelperMacros.h>
- #include <core/basics/RoundToNearest.h>
- class Testcasts : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE( Testcasts );
- CPPUNIT_TEST( testCasts );
- CPPUNIT_TEST_SUITE_END();
-
- private:
-
- public:
- void setUp();
- void tearDown();
-
-
- void testConstructor();
-
-
- void testCasts();
- };
- #endif
|