(self)
| 9 | |
| 10 | class TestIsNumpyNdarray(unittest.TestCase): |
| 11 | def test_tensor_numpy(self): |
| 12 | self.assertTrue(is_numpy_ndarray(Tensor([1, 2, 3]).numpy())) |
| 13 | |
| 14 | if __name__ == '__main__': |
| 15 | unittest.main() |
nothing calls this directly
no test coverage detected