| 24 | namespace test { |
| 25 | |
| 26 | Status TestCluster::MakeTestCluster(const SessionOptions& options, int n, |
| 27 | std::unique_ptr<TestCluster>* out_cluster) { |
| 28 | string server_path = |
| 29 | strings::StrCat(testing::TensorFlowSrcRoot(), |
| 30 | "/core/distributed_runtime/rpc/grpc_testlib_server"); |
| 31 | return MakeTestCluster(server_path, options, n, out_cluster); |
| 32 | } |
| 33 | |
| 34 | Status TestCluster::MakeTestCluster(const string& binary_path, |
| 35 | const SessionOptions& options, int n, |
nothing calls this directly
no test coverage detected