| 1519 | class CApiGradientsTest : public ::testing::Test { |
| 1520 | protected: |
| 1521 | CApiGradientsTest() |
| 1522 | : s_(TF_NewStatus()), |
| 1523 | graph_(TF_NewGraph()), |
| 1524 | expected_graph_(TF_NewGraph()) {} |
| 1525 | |
| 1526 | ~CApiGradientsTest() override { |
| 1527 | TF_DeleteGraph(graph_); |
nothing calls this directly
no test coverage detected