| 584 | } |
| 585 | |
| 586 | std::string GetTestFileAsString() |
| 587 | { |
| 588 | std::ifstream file(GetTestFileName()); |
| 589 | std::stringstream ss; |
| 590 | ss << file.rdbuf(); |
| 591 | return ss.str(); |
| 592 | } |
| 593 | |
| 594 | BOOST_AUTO_TEST_CASE(LogSourceDBLogReaderRewriteByteByByte) |
| 595 | { |
no test coverage detected