(self)
| 537 | assert_array_equal(res, desired) |
| 538 | |
| 539 | def test_1D_array(self): |
| 540 | a = np.array([1]) |
| 541 | b = np.array([2]) |
| 542 | res = dstack([a, b]) |
| 543 | desired = np.array([[[1, 2]]]) |
| 544 | assert_array_equal(res, desired) |
| 545 | |
| 546 | def test_2D_array(self): |
| 547 | a = np.array([[1], [2]]) |
nothing calls this directly
no test coverage detected