| 678 | } |
| 679 | |
| 680 | void writeString(const std::string& str, const std::shared_ptr<minifi::io::BaseStream>& out) { |
| 681 | out->write(const_cast<uint8_t*>(reinterpret_cast<const uint8_t*>(str.data())), gsl::narrow<int>(str.length())); |
| 682 | } |
| 683 | |
| 684 | TEST_CASE("FlowFile serialization", "[testFlowFileSerialization]") { |
| 685 | MergeTestController testController; |
no test coverage detected