(self)
| 2398 | assert_array_strict_equal(ac, act) |
| 2399 | |
| 2400 | def test_array_double(self): |
| 2401 | # Test native double input with array min/max. |
| 2402 | a = self._generate_data(self.nr, self.nc) |
| 2403 | m = np.zeros(a.shape) |
| 2404 | M = m + 0.5 |
| 2405 | ac = self.fastclip(a, m, M) |
| 2406 | act = self.clip(a, m, M) |
| 2407 | assert_array_strict_equal(ac, act) |
| 2408 | |
| 2409 | def test_simple_nonnative(self): |
| 2410 | # Test non native double input with scalar min/max. |
nothing calls this directly
no test coverage detected