| 41 | using namespace pdal; |
| 42 | |
| 43 | TEST(BoundsTest, test_ctor) |
| 44 | { |
| 45 | BOX3D b1; |
| 46 | EXPECT_TRUE(b1.empty()); |
| 47 | |
| 48 | b1.clear(); |
| 49 | BOX3D b2; |
| 50 | EXPECT_EQ(b1, b2); |
| 51 | } |
| 52 | |
| 53 | TEST(BoundsTest, test_equals) |
| 54 | { |
nothing calls this directly
no test coverage detected