(self)
| 508 | assert_array_equal(res, desired) |
| 509 | |
| 510 | def test_1D_array(self): |
| 511 | a = np.array([1]) |
| 512 | b = np.array([2]) |
| 513 | res = dstack([a, b]) |
| 514 | desired = np.array([[[1, 2]]]) |
| 515 | assert_array_equal(res, desired) |
| 516 | |
| 517 | def test_2D_array(self): |
| 518 | a = np.array([[1], [2]]) |
nothing calls this directly
no test coverage detected