source: molecuilder/src/unittests/LinkedCellUnitTest.hpp@ 7a8319

Last change on this file since 7a8319 was f7e187, checked in by Frederik Heber <heber@…>, 15 years ago

Full-working LinkedCellUnitTest.

  • new unit test for class LinkedCell now checks all functions and runs fine.

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

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 * LinkedCellUnitTest.hpp
3 *
4 * Created on: Apr 9, 2010
5 * Author: heber
6 */
7
8#ifndef LINKEDCELLUNITTEST_HPP_
9#define LINKEDCELLUNITTEST_HPP_
10
11#include <cppunit/extensions/HelperMacros.h>
12
13
14class element;
15class LinkedCell;
16class molecule;
17class periodentafel;
18
19/********************************************** Test classes **************************************/
20
21class LinkedCellTest : public CppUnit::TestFixture
22{
23 CPPUNIT_TEST_SUITE( LinkedCellTest) ;
24 CPPUNIT_TEST ( CheckBoundsTest );
25 CPPUNIT_TEST ( GetCurrentCellTest );
26 CPPUNIT_TEST ( GetRelativeToCurrentCellTest );
27 CPPUNIT_TEST ( SetIndexToNodeTest );
28 CPPUNIT_TEST ( SetIndexToVectorTest );
29 CPPUNIT_TEST ( GetNeighbourBoundsTest );
30 CPPUNIT_TEST ( GetallNeighboursTest );
31 CPPUNIT_TEST ( GetPointsInsideSphereTest );
32 CPPUNIT_TEST_SUITE_END();
33
34public:
35 void setUp();
36 void tearDown();
37
38 void GetCurrentCellTest();
39 void GetRelativeToCurrentCellTest();
40 void SetIndexToNodeTest();
41 void SetIndexToVectorTest();
42 void CheckBoundsTest();
43 void GetNeighbourBoundsTest();
44 void GetallNeighboursTest();
45 void GetPointsInsideSphereTest();
46
47private:
48
49 molecule *TestMolecule;
50 element *hydrogen;
51 periodentafel *tafel;
52 LinkedCell *LC;
53};
54
55
56#endif /* LINKEDCELLUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.