| 43 | }; |
| 44 | |
| 45 | Fixture::Fixture() { |
| 46 | test_plan_ = test_controller_.createPlan(); |
| 47 | dummy_processor_ = test_plan_->addProcessor("DummyProcessor", "dummyProcessor"); |
| 48 | test_plan_->runNextProcessor(); // set the dummy processor as current |
| 49 | context_ = test_plan_->getCurrentContext(); |
| 50 | process_session_ = utils::make_unique<core::ProcessSession>(context_); |
| 51 | } |
| 52 | |
| 53 | const core::Relationship Success{"success", "everything is fine"}; |
| 54 | const core::Relationship Failure{"failure", "something has gone awry"}; |
nothing calls this directly
no test coverage detected