| 24 | namespace test_util { |
| 25 | |
| 26 | string TestSrcDirPath(const string& relative_path) { |
| 27 | const string base_path = tensorflow::testing::TensorFlowSrcRoot(); |
| 28 | const string contrib_path = tensorflow::io::JoinPath( |
| 29 | tensorflow::testing::TensorFlowSrcRoot(), "/contrib"); |
| 30 | return tensorflow::io::JoinPath(contrib_path, relative_path); |
| 31 | } |
| 32 | |
| 33 | } // namespace test_util |
| 34 | } // namespace serving |
no test coverage detected