| 103 | } |
| 104 | |
| 105 | TEST_F(SegmentTest, Empty) { |
| 106 | Scope s = Scope::NewRootScope(); |
| 107 | Graph g(OpRegistry::Global()); |
| 108 | TF_EXPECT_OK(s.ToGraph(&g)); |
| 109 | // Expect no segments/subgraphs. |
| 110 | RunTest(&g, {}, {}, {}, {}); |
| 111 | } |
| 112 | |
| 113 | TEST_F(SegmentTest, Simple) { |
| 114 | // feed |
nothing calls this directly
no test coverage detected