(self)
| 31 | class FIFOQueueTest(xla_test.XLATestCase): |
| 32 | |
| 33 | def testEnqueue(self): |
| 34 | with self.session(), self.test_scope(): |
| 35 | q = data_flow_ops.FIFOQueue(10, dtypes_lib.float32) |
| 36 | enqueue_op = q.enqueue((10.0,)) |
| 37 | enqueue_op.run() |
| 38 | |
| 39 | def testEnqueueWithShape(self): |
| 40 | with self.session(), self.test_scope(): |
nothing calls this directly
no test coverage detected