source: molecuilder/src/unittests/AnalysisCorrelationToPointUnitTest.hpp@ edbe74

Last change on this file since edbe74 was e1900f, checked in by Frederik Heber <heber@…>, 16 years ago

Closed ticket #48 (AnalysisCorrelation...() take MoleculeListClass instead of molecule).

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 * AnalysisCorrelationToPointUnitTest.hpp
3 *
4 * Created on: Oct 13, 2009
5 * Author: heber
6 */
7
8#ifndef ANALYSISCORRELATIONTOPOINTUNITTEST_HPP_
9#define ANALYSISCORRELATIONTOPOINTUNITTEST_HPP_
10
11#include <cppunit/extensions/HelperMacros.h>
12
13class element;
14class LinkedCell;
15class molecule;
16class MoleculeListClass;
17class periodentafel;
18class Tesselation;
19class Vector;
20
21/********************************************** Test classes **************************************/
22
23class AnalysisCorrelationToPointUnitTest : public CppUnit::TestFixture
24{
25 CPPUNIT_TEST_SUITE( AnalysisCorrelationToPointUnitTest ) ;
26 CPPUNIT_TEST ( CorrelationToPointTest );
27 CPPUNIT_TEST ( CorrelationToPointBinNoRangeTest );
28 CPPUNIT_TEST ( CorrelationToPointBinRangeTest );
29 CPPUNIT_TEST_SUITE_END();
30
31public:
32 void setUp();
33 void tearDown();
34 void CorrelationToPointTest();
35 void CorrelationToPointBinNoRangeTest();
36 void CorrelationToPointBinRangeTest();
37
38private:
39
40 MoleculeListClass *TestList;
41 molecule *TestMolecule;
42 element *hydrogen;
43 periodentafel *tafel;
44
45 CorrelationToPointMap *pointmap;
46 BinPairMap *binmap;
47 Vector *point;
48};
49
50#endif /* ANALYSISCORRELATIONTOPOINTUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.