| 41 | using namespace pdal; |
| 42 | |
| 43 | TEST(SMRFilterTest, invalidReturns) |
| 44 | { |
| 45 | Options opts; |
| 46 | opts.add("returns", "foo"); |
| 47 | |
| 48 | SMRFilter filter; |
| 49 | filter.setOptions(opts); |
| 50 | |
| 51 | PointTable table; |
| 52 | EXPECT_THROW(filter.prepare(table), pdal_error); |
| 53 | } |
| 54 | |
| 55 | TEST(SMRFilterTest, validReturns) |
| 56 | { |
nothing calls this directly
no test coverage detected