| 43 | using namespace pdal; |
| 44 | |
| 45 | TEST(E57ReaderTest, testCtr) |
| 46 | { |
| 47 | Options ops; |
| 48 | ops.add("filename",Support::datapath("e57/A4.e57")); |
| 49 | E57Reader reader2; |
| 50 | reader2.setOptions(ops); |
| 51 | PointTable table; |
| 52 | reader2.prepare(table); |
| 53 | ASSERT_TRUE(table.layout()->hasDim(Dimension::Id::X)); |
| 54 | } |
| 55 | |
| 56 | |
| 57 | TEST(E57ReaderTest, testPreview) |
nothing calls this directly
no test coverage detected