| 43 | { |
| 44 | |
| 45 | MetadataNode run(Options& fOpts) |
| 46 | { |
| 47 | StageFactory factory; |
| 48 | |
| 49 | Stage *r = factory.createStage("readers.las"); |
| 50 | Options rOpts; |
| 51 | rOpts.add("filename", Support::datapath("las/autzen_trim.las")); |
| 52 | r->setOptions(rOpts); |
| 53 | |
| 54 | Stage *f = factory.createStage("filters.info"); |
| 55 | f->setOptions(fOpts); |
| 56 | f->setInput(*r); |
| 57 | |
| 58 | FixedPointTable t(1000); |
| 59 | |
| 60 | f->prepare(t); |
| 61 | f->execute(t); |
| 62 | return f->getMetadata(); |
| 63 | } |
| 64 | |
| 65 | TEST(InfoFilterTest, point) |
| 66 | { |
no test coverage detected