(self)
| 301 | |
| 302 | class TestApplyOverAxes: |
| 303 | def test_simple(self): |
| 304 | a = np.arange(24).reshape(2, 3, 4) |
| 305 | aoa_a = apply_over_axes(np.sum, a, [0, 2]) |
| 306 | assert_array_equal(aoa_a, np.array([[[60], [92], [124]]])) |
| 307 | |
| 308 | |
| 309 | class TestExpandDims: |
nothing calls this directly
no test coverage detected