| 18 | namespace testing { |
| 19 | |
| 20 | inline std::string FixturePath(const std::string& relative) { |
| 21 | return std::string(TESTS_FIXTURE_DIR) + "/" + relative; |
| 22 | } |
| 23 | |
| 24 | inline std::string LoadFixtureOrEmpty(const std::string& relative) { |
| 25 | std::ifstream file(FixturePath(relative)); |
no outgoing calls
no test coverage detected