source: molecuilder/src/unittests/analysisbondsunittest.hpp@ 14c0f0

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

Two new bond analysis functions.

  • Property mode set to 100644
File size: 979 bytes
Line 
1/*
2 * analysisbondsunittest.hpp
3 *
4 * Created on: Nov 7, 2009
5 * Author: heber
6 */
7
8#ifndef ANALYSISBONDSUNITTEST_HPP_
9#define ANALYSISBONDSUNITTEST_HPP_
10
11#include <cppunit/extensions/HelperMacros.h>
12
13class BondGraph;
14class element;
15class molecule;
16class periodentafel;
17
18/********************************************** Test classes **************************************/
19
20class AnalysisBondsTest : public CppUnit::TestFixture
21{
22 CPPUNIT_TEST_SUITE( AnalysisBondsTest) ;
23 CPPUNIT_TEST ( GetMaxMinMeanBondCountTest );
24 CPPUNIT_TEST ( MinMeanMaxBondDistanceBetweenElementsTest );
25 CPPUNIT_TEST_SUITE_END();
26
27public:
28 void setUp();
29 void tearDown();
30 void GetMaxMinMeanBondCountTest();
31 void MinMeanMaxBondDistanceBetweenElementsTest();
32
33private:
34
35 molecule *TestMolecule;
36 element *hydrogen;
37 element *carbon;
38 periodentafel *tafel;
39
40 BondGraph *BG;
41 string *filename;
42};
43
44#endif /* ANALYSISBONDSUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.