(self)
| 544 | assert_array_equal(res, desired) |
| 545 | |
| 546 | def test_2D_array(self): |
| 547 | a = np.array([[1], [2]]) |
| 548 | b = np.array([[1], [2]]) |
| 549 | res = dstack([a, b]) |
| 550 | desired = np.array([[[1, 1]], [[2, 2, ]]]) |
| 551 | assert_array_equal(res, desired) |
| 552 | |
| 553 | def test_2D_array2(self): |
| 554 | a = np.array([1, 2]) |
nothing calls this directly
no test coverage detected