(self)
| 7200 | assert_(_mean(np.ones(100000, dtype='float16')) == 1) |
| 7201 | |
| 7202 | def test_mean_axis_error(self): |
| 7203 | # Ensure that AxisError is raised instead of IndexError when axis is |
| 7204 | # out of bounds, see gh-15817. |
| 7205 | with assert_raises(np.exceptions.AxisError): |
| 7206 | np.arange(10).mean(axis=2) |
| 7207 | |
| 7208 | def test_mean_where(self): |
| 7209 | a = np.arange(16).reshape((4, 4)) |
nothing calls this directly
no test coverage detected