#ifndef _TESTDOWNHILLSIMPLEX_H #define _TESTDOWNHILLSIMPLEX_H #include #include "optimization/DownhillSimplexOptimizer.h" /** * CppUnit-Testcase. */ class TestDownhillSimplex : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( TestDownhillSimplex ); CPPUNIT_TEST(testDHS_1Dim); CPPUNIT_TEST(testDHS_2Dim); CPPUNIT_TEST_SUITE_END(); private: public: void setUp(); void tearDown(); /** * Constructor / Destructor testing */ void testDHS_1Dim(); void testDHS_2Dim(); }; #endif // _TESTFASTHIK_H