(dataset, tensor, shape)
| 162 | def testConcatenate(self): |
| 163 | |
| 164 | def fn(dataset, tensor, shape): |
| 165 | del shape |
| 166 | return dataset.concatenate(dataset_ops.Dataset.from_tensors(tensor)) |
| 167 | |
| 168 | self._testTransformation(fn) |
| 169 |
nothing calls this directly
no test coverage detected