Testcasts.h 746 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * NICE-Core - efficient algebra and computer vision methods
  3. * - libfbasics - An core/basics/template for new NICE libraries
  4. * See file License for license information.
  5. */
  6. #ifndef _TESTCASTS_FBASICS_H
  7. #define _TESTCASTS_FBASICS_H
  8. #include <cppunit/extensions/HelperMacros.h>
  9. #include <core/basics/RoundToNearest.h>
  10. /**
  11. * CppUnit-Testcase.
  12. * Test template...
  13. */
  14. class Testcasts : public CppUnit::TestFixture {
  15. CPPUNIT_TEST_SUITE( Testcasts );
  16. CPPUNIT_TEST( testCasts );
  17. CPPUNIT_TEST_SUITE_END();
  18. private:
  19. public:
  20. void setUp();
  21. void tearDown();
  22. /**
  23. * Constructor / Destructor testing
  24. */
  25. void testConstructor();
  26. /**
  27. * Test something...
  28. */
  29. void testCasts();
  30. };
  31. #endif // _TESTCASTS_FBASICS_H