source: molecuilder/src/unittests/listofbondsunittest.hpp@ 06e3ff

Last change on this file since 06e3ff was 872b51, checked in by Frederik Heber <heber@…>, 16 years ago

Huge refactoring: molecule::ListOfBondsPerAtom and molecule::NumberOfBondsPerAtom removed, atom::ListOfBonds introduced. Unit Test for ListOfBonds manipulation introduced.

  • changes to builder.cpp: removed CreateListOfBondsPerAtom() calls, as the creation of the global arrays is not necessary anymore
  • changes to LinkedCell: LinkedCell::CheckBounds(int[NDIM]) does not admonish out of bonds as this is not desired for the local offset which may become out of bounds.
  • changes to lists.hpp templates: BUGFIX: unlink() now sets ->next and ->previous to NULL, cleanup() uses removedwithoutcheck()
  • new templates for molecule.hpp: SumPerAtom() allows for summation of the return value of atom:...() member fiunctions. This is needed e.g. for atom::CorrectBondDegree()

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[872b51]1/*
2 * listofbondsunittest.hpp
3 *
4 * Created on: 18 Oct 2009
5 * Author: user
6 */
7
8#ifndef LISTOFBONDSUNITTEST_HPP_
9#define LISTOFBONDSUNITTEST_HPP_
10
11#include <cppunit/extensions/HelperMacros.h>
12
13class element;
14class molecule;
15class periodentafel;
16
17/********************************************** Test classes **************************************/
18
19class ListOfBondsTest : public CppUnit::TestFixture
20{
21 CPPUNIT_TEST_SUITE( ListOfBondsTest) ;
22 CPPUNIT_TEST ( AddingBondTest );
23 CPPUNIT_TEST ( RemovingBondTest );
24 CPPUNIT_TEST ( RemovingBondsTest );
25 CPPUNIT_TEST ( RemoveAtomTest );
26 CPPUNIT_TEST ( DeleteBondTest );
27 CPPUNIT_TEST ( DeleteAtomTest );
28 CPPUNIT_TEST_SUITE_END();
29
30public:
31 void setUp();
32 void tearDown();
33 void AddingBondTest();
34 void RemovingBondTest();
35 void RemovingBondsTest();
36 void RemoveAtomTest();
37 void DeleteBondTest();
38 void DeleteAtomTest();
39
40private:
41
42 molecule *TestMolecule;
43 element *hydrogen;
44 periodentafel *tafel;
45};
46
47
48#endif /* LISTOFBONDSUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.