source: molecuilder/src/unittests/AnalysisCorrelationToPointUnitTest.hpp@ 4efdad

Last change on this file since 4efdad was 57cfb7, checked in by Frederik Heber <heber@…>, 16 years ago

Pair correlation analysis added.

Unit tests are working fine.

  • 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 molecule;
15class LinkedCell;
16class periodentafel;
17class Tesselation;
18class Vector;
19
20/********************************************** Test classes **************************************/
21
22class AnalysisCorrelationToPointUnitTest : public CppUnit::TestFixture
23{
24 CPPUNIT_TEST_SUITE( AnalysisCorrelationToPointUnitTest ) ;
25 CPPUNIT_TEST ( CorrelationToPointTest );
26 CPPUNIT_TEST ( CorrelationToPointBinNoRangeTest );
27 CPPUNIT_TEST ( CorrelationToPointBinRangeTest );
28 CPPUNIT_TEST_SUITE_END();
29
30public:
31 void setUp();
32 void tearDown();
33 void CorrelationToPointTest();
34 void CorrelationToPointBinNoRangeTest();
35 void CorrelationToPointBinRangeTest();
36
37private:
38
39 molecule *TestMolecule;
40 element *hydrogen;
41 periodentafel *tafel;
42
43 CorrelationToPointMap *pointmap;
44 BinPairMap *binmap;
45 Vector *point;
46};
47
48#endif /* ANALYSISCORRELATIONTOPOINTUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.