TestFTransform.h 790 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // C++ Interface: TestFTransform
  3. //
  4. // Description:
  5. //
  6. //
  7. // Author: Michael Koch <Koch.Michael@uni-jena.de>, (C) 2009
  8. //
  9. // Copyright: See COPYING file that comes with this distribution
  10. //
  11. /**
  12. * @file TestFTransform.h
  13. * @brief TestFTransform
  14. * @author Michael Koch
  15. * @date Di Aug 4 2009
  16. */
  17. #ifndef OBJREC_TestFTransform_H
  18. #define OBJREC_TestFTransform_H
  19. #include <cppunit/extensions/HelperMacros.h>
  20. /**
  21. * CppUnit-Testcase.
  22. * Tests for EigenValue Operations
  23. */
  24. class TestFTransform : public CppUnit::TestFixture
  25. {
  26. CPPUNIT_TEST_SUITE ( TestFTransform );
  27. CPPUNIT_TEST ( TestFTransformComputation );
  28. CPPUNIT_TEST_SUITE_END();
  29. private:
  30. public:
  31. void setUp();
  32. void tearDown();
  33. void TestFTransformComputation();
  34. };
  35. #endif // _TestFTransform_H_