| 45 | { |
| 46 | |
| 47 | TEST(E57WriterTest, testCtr) |
| 48 | { |
| 49 | Options ops; |
| 50 | std::string outfile = Support::datapath("e57/test.e57"); |
| 51 | ops.add("filename", outfile); |
| 52 | E57Writer writer; |
| 53 | writer.setOptions(ops); |
| 54 | PointTable table; |
| 55 | writer.prepare(table); |
| 56 | remove(outfile.c_str()); |
| 57 | } |
| 58 | |
| 59 | PointViewSet writertest_readE57(std::string filename, PointTableRef table) |
| 60 | { |
nothing calls this directly
no test coverage detected