| 29 | CApiWhileLoopTest() : s_(TF_NewStatus()), graph_(TF_NewGraph()) {} |
| 30 | |
| 31 | ~CApiWhileLoopTest() override { |
| 32 | TF_DeleteGraph(graph_); |
| 33 | TF_DeleteStatus(s_); |
| 34 | } |
| 35 | |
| 36 | void Init(int ninputs) { |
| 37 | DCHECK(inputs_.empty()); |
nothing calls this directly
no test coverage detected