| 363 | |
| 364 | |
| 365 | Kernel::ParseStageResult Kernel::test_parseStageOption( |
| 366 | std::string o, std::string& stage, std::string& option, std::string& value) |
| 367 | { |
| 368 | class TestKernel : public Kernel |
| 369 | { |
| 370 | public: |
| 371 | virtual std::string getName() const |
| 372 | { return "TestKernel"; } |
| 373 | int execute() |
| 374 | { return 0; } |
| 375 | }; |
| 376 | |
| 377 | TestKernel k; |
| 378 | return k.parseStageOption(o, stage, option, value); |
| 379 | } |
| 380 | |
| 381 | } // namespace pdal |
nothing calls this directly
no test coverage detected