xmsgrid  1.0
GmExtents.t.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
5 //------------------------------------------------------------------------------
6 #pragma once
7 
8 #ifdef CXX_TEST
9 
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 //----- Namespace declaration --------------------------------------------------
20 
21 // namespace xms {
22 
24 class GmExtents3dUnitTests : public CxxTest::TestSuite
25 {
26 public:
27  void testSinglePt();
28  void testMultiplePts();
29  void testNoPts();
30  void testOverlapping();
31 }; // class GmExtents3dUnitTests
32 
33 //} // namespace xms
34 
35 #endif
Tests GmExtents3d.
Definition: GmExtents.t.h:24
void testOverlapping()
Tests overlap.
Definition: GmExtents.cpp:610
void testSinglePt()
Tests a single point.
Definition: GmExtents.cpp:555
void testMultiplePts()
Tests multiple points.
Definition: GmExtents.cpp:575
void testNoPts()
Tests no points.
Definition: GmExtents.cpp:600