Rev | Line | |
---|
[57cfb7] | 1 | /*
|
---|
| 2 | * AnalysisPairCorrelationUnitTest.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Oct 13, 2009
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef ANALYSISPAIRCORRELATIONUNITTEST_HPP_
|
---|
| 9 | #define ANALYSISPAIRCORRELATIONUNITTEST_HPP_
|
---|
| 10 |
|
---|
| 11 | #include <cppunit/extensions/HelperMacros.h>
|
---|
| 12 |
|
---|
| 13 | class element;
|
---|
| 14 | class LinkedCell;
|
---|
[e1900f] | 15 | class molecule;
|
---|
| 16 | class MoleculeListClass;
|
---|
[57cfb7] | 17 | class periodentafel;
|
---|
| 18 | class Tesselation;
|
---|
| 19 | class Vector;
|
---|
| 20 |
|
---|
| 21 | /********************************************** Test classes **************************************/
|
---|
| 22 |
|
---|
| 23 | class AnalysisPairCorrelationUnitTest : public CppUnit::TestFixture
|
---|
| 24 | {
|
---|
| 25 | CPPUNIT_TEST_SUITE( AnalysisPairCorrelationUnitTest ) ;
|
---|
| 26 | CPPUNIT_TEST ( PairCorrelationTest );
|
---|
| 27 | CPPUNIT_TEST ( PairCorrelationBinNoRangeTest );
|
---|
| 28 | CPPUNIT_TEST ( PairCorrelationBinRangeTest );
|
---|
| 29 | CPPUNIT_TEST_SUITE_END();
|
---|
| 30 |
|
---|
| 31 | public:
|
---|
| 32 | void setUp();
|
---|
| 33 | void tearDown();
|
---|
| 34 | void PairCorrelationTest();
|
---|
| 35 | void PairCorrelationBinNoRangeTest();
|
---|
| 36 | void PairCorrelationBinRangeTest();
|
---|
| 37 |
|
---|
| 38 | private:
|
---|
| 39 |
|
---|
[e1900f] | 40 | MoleculeListClass *TestList;
|
---|
[57cfb7] | 41 | molecule *TestMolecule;
|
---|
| 42 | element *hydrogen;
|
---|
| 43 | periodentafel *tafel;
|
---|
| 44 |
|
---|
| 45 | PairCorrelationMap *correlationmap;
|
---|
| 46 | BinPairMap *binmap;
|
---|
| 47 | };
|
---|
| 48 |
|
---|
| 49 | #endif /* ANALYSISPAIRCORRELATIONUNITTEST_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.