| 307 | } |
| 308 | |
| 309 | std::shared_ptr<core::FlowFile> TestPlan::getCurrentFlowFile() { |
| 310 | if (current_flowfile_ == nullptr) { |
| 311 | current_flowfile_ = process_sessions_.at(location)->get(); |
| 312 | } |
| 313 | return current_flowfile_; |
| 314 | } |
| 315 | |
| 316 | |
| 317 | std::shared_ptr<core::ProcessContext> TestPlan::getCurrentContext() { |
no test coverage detected