(self)
| 1340 | assert_raises(ValueError, umt.euclidean_pdist, a) |
| 1341 | |
| 1342 | def test_cumsum(self): |
| 1343 | a = np.arange(10) |
| 1344 | result = umt.cumsum(a) |
| 1345 | assert_array_equal(result, a.cumsum()) |
| 1346 | |
| 1347 | def test_object_logical(self): |
| 1348 | a = np.array([3, None, True, False, "test", ""], dtype=object) |
nothing calls this directly
no test coverage detected