xmsgeom  1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
GmExtents.t.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
4 //------------------------------------------------------------------------------
5 #pragma once
6 
7 #ifdef CXX_TEST
8 
9 // 3. Standard Library Headers
10 
11 // 4. External Library Headers
12 #include <cxxtest/TestSuite.h>
13 
14 // 5. Shared Headers
15 
16 // 6. Non-shared Headers
17 
18 //----- Namespace declaration --------------------------------------------------
19 
20 // namespace xms {
21 
23 class GmExtents3dUnitTests : public CxxTest::TestSuite
24 {
25 public:
26  void testSinglePt();
27  void testMultiplePts();
28  void testNoPts();
29  void testOverlapping();
30 }; // class GmExtents3dUnitTests
31 
32 //} // namespace xms
33 
34 #endif
Tests GmExtents3d.
Definition: GmExtents.t.h:23
void testOverlapping()
Tests overlap.
Definition: GmExtents.cpp:611
void testSinglePt()
Tests a single point.
Definition: GmExtents.cpp:556
void testMultiplePts()
Tests multiple points.
Definition: GmExtents.cpp:576
void testNoPts()
Tests no points.
Definition: GmExtents.cpp:601