| 1924 | class CApiAttributesTest : public ::testing::Test { |
| 1925 | protected: |
| 1926 | CApiAttributesTest() |
| 1927 | : s_(TF_NewStatus()), graph_(TF_NewGraph()), counter_(0) {} |
| 1928 | |
| 1929 | ~CApiAttributesTest() override { |
| 1930 | TF_DeleteGraph(graph_); |
nothing calls this directly
no test coverage detected