(self)
| 515 | assert_array_equal(res, desired) |
| 516 | |
| 517 | def test_2D_array(self): |
| 518 | a = np.array([[1], [2]]) |
| 519 | b = np.array([[1], [2]]) |
| 520 | res = dstack([a, b]) |
| 521 | desired = np.array([[[1, 1]], [[2, 2, ]]]) |
| 522 | assert_array_equal(res, desired) |
| 523 | |
| 524 | def test_2D_array2(self): |
| 525 | a = np.array([1, 2]) |
nothing calls this directly
no test coverage detected