xmsgrid  1.0
GmPtSearch.t.h
Go to the documentation of this file.
1 #pragma once
2 //------------------------------------------------------------------------------
7 //------------------------------------------------------------------------------
8 
9 //----- Included files ---------------------------------------------------------
10 // 3. Standard Library Headers
11 
12 // 4. External Library Headers
13 #include <cxxtest/TestSuite.h>
14 
15 // 5. Shared Headers
16 
17 // 6. Non-shared Headers
18 
19 //----- Forward declarations ---------------------------------------------------
20 
21 //----- Namespace declaration --------------------------------------------------
22 // namespace xms {
23 
24 //----- Constants / Enumerations -----------------------------------------------
25 
26 //----- Structs / Classes ------------------------------------------------------
27 class PtSearchUnitTests : public CxxTest::TestSuite
28 {
29 public:
30  void testCreateClass();
31  void testTest2d();
32  void testTest2dTutData();
33  void testTest3d();
34  void testTest3dOct();
35  void testActivity2d();
36  void testActivity3d();
37  void testPtsWithinDist();
38  void testVectorThatGrows();
39 };
40 //----- Function prototypes ----------------------------------------------------
41 
42 //} // namespace xms
void testTest3d()
testing in 3d
Definition: GmPtSearch.cpp:847
void testActivity2d()
testing searching with activity
Definition: GmPtSearch.cpp:956
void testCreateClass()
tests creating the class
Definition: GmPtSearch.cpp:734
tester for the PtSearch class
Definition: GmPtSearch.t.h:27
void testTest2dTutData()
testing tutorial data from GMS in 2d
Definition: GmPtSearch.cpp:827
void testTest3dOct()
testing octant searching in 3d
Definition: GmPtSearch.cpp:930
void testVectorThatGrows()
testing VectorThatGrows functionality
void testActivity3d()
testing searching with activity
Definition: GmPtSearch.cpp:991
void testPtsWithinDist()
testing Point within a distance to a specified point
void testTest2d()
testing in 2d
Definition: GmPtSearch.cpp:773