(self)
| 2813 | |
| 2814 | @test_util.run_deprecated_v1 |
| 2815 | def testPreventFetching(self): |
| 2816 | g = ops.Graph() |
| 2817 | a = constant_op.constant(2.0) |
| 2818 | self.assertTrue(g.is_fetchable(a)) |
| 2819 | g.prevent_fetching(a.op) |
| 2820 | self.assertFalse(g.is_fetchable(a)) |
| 2821 | |
| 2822 | def testAsGraphElementConversions(self): |
| 2823 |
nothing calls this directly
no test coverage detected