(self)
| 138 | assert_array_equal(res, desired) |
| 139 | |
| 140 | def test_1D_array(self): |
| 141 | a = array([1]) |
| 142 | b = array([2]) |
| 143 | res = hstack([a, b]) |
| 144 | desired = array([1, 2]) |
| 145 | assert_array_equal(res, desired) |
| 146 | |
| 147 | def test_2D_array(self): |
| 148 | a = array([[1], [2]]) |
nothing calls this directly
no test coverage detected