| 27 | class CApiWhileLoopTest : public ::testing::Test { |
| 28 | protected: |
| 29 | CApiWhileLoopTest() : s_(TF_NewStatus()), graph_(TF_NewGraph()) {} |
| 30 | |
| 31 | ~CApiWhileLoopTest() override { |
| 32 | TF_DeleteGraph(graph_); |
nothing calls this directly
no test coverage detected