(self, x, cmin, cmax)
| 4957 | |
| 4958 | class TestClip: |
| 4959 | def _check_range(self, x, cmin, cmax): |
| 4960 | assert_(np.all(x >= cmin)) |
| 4961 | assert_(np.all(x <= cmax)) |
| 4962 | |
| 4963 | def _clip_type(self, type_group, array_max, |
| 4964 | clip_min, clip_max, inplace=False, |
no test coverage detected