(self)
| 1675 | assert_(np.all(a)) |
| 1676 | |
| 1677 | def test_large_float_sum(self): |
| 1678 | a = np.arange(10000, dtype='f') |
| 1679 | assert_equal(a.sum(dtype='d'), a.astype('d').sum()) |
| 1680 | |
| 1681 | def test_ufunc_casting_out(self): |
| 1682 | a = np.array(1.0, dtype=np.float32) |
nothing calls this directly
no test coverage detected