(self)
| 25 | class AddOneTest(tf.test.TestCase): |
| 26 | |
| 27 | def test(self): |
| 28 | if tf.test.is_built_with_cuda(): |
| 29 | result = cuda_op.add_one([5, 4, 3, 2, 1]) |
| 30 | self.assertAllEqual(result, [6, 5, 4, 3, 2]) |
| 31 | |
| 32 | |
| 33 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected