(self)
| 272 | |
| 273 | class TestApplyOverAxes: |
| 274 | def test_simple(self): |
| 275 | a = np.arange(24).reshape(2, 3, 4) |
| 276 | aoa_a = apply_over_axes(np.sum, a, [0, 2]) |
| 277 | assert_array_equal(aoa_a, np.array([[[60], [92], [124]]])) |
| 278 | |
| 279 | |
| 280 | class TestExpandDims: |
nothing calls this directly
no test coverage detected