(self)
| 530 | assert_raises(TypeError, dstack, 1) |
| 531 | |
| 532 | def test_0D_array(self): |
| 533 | a = np.array(1) |
| 534 | b = np.array(2) |
| 535 | res = dstack([a, b]) |
| 536 | desired = np.array([[[1, 2]]]) |
| 537 | assert_array_equal(res, desired) |
| 538 | |
| 539 | def test_1D_array(self): |
| 540 | a = np.array([1]) |
nothing calls this directly
no test coverage detected