/* * AnalysisCorrelationToPointUnitTest.hpp * * Created on: Oct 13, 2009 * Author: heber */ #ifndef ANALYSISCORRELATIONTOPOINTUNITTEST_HPP_ #define ANALYSISCORRELATIONTOPOINTUNITTEST_HPP_ #include class element; class molecule; class LinkedCell; class periodentafel; class Tesselation; class Vector; /********************************************** Test classes **************************************/ class AnalysisCorrelationToPointUnitTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( AnalysisCorrelationToPointUnitTest ) ; CPPUNIT_TEST ( CorrelationToPointTest ); CPPUNIT_TEST ( CorrelationToPointBinNoRangeTest ); CPPUNIT_TEST ( CorrelationToPointBinRangeTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void CorrelationToPointTest(); void CorrelationToPointBinNoRangeTest(); void CorrelationToPointBinRangeTest(); private: molecule *TestMolecule; element *hydrogen; periodentafel *tafel; CorrelationToPointMap *pointmap; BinPairMap *binmap; Vector *point; }; #endif /* ANALYSISCORRELATIONTOPOINTUNITTEST_HPP_ */