| 88 | } |
| 89 | |
| 90 | const InvokeResult CukeBoostLogInterceptor::getResult() const { |
| 91 | std::string d = description.str(); |
| 92 | if (d.empty()) { |
| 93 | return InvokeResult::success(); |
| 94 | } else { |
| 95 | return InvokeResult::failure(description.str()); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | const InvokeResult BoostStep::invokeStepBody() { |
| 100 | static std::once_flag initialized; |