(self)
| 2388 | assert_array_strict_equal(ac, act) |
| 2389 | |
| 2390 | def test_simple_int(self): |
| 2391 | # Test native int input with scalar min/max. |
| 2392 | a = self._generate_int_data(self.nr, self.nc) |
| 2393 | a = a.astype(int) |
| 2394 | m = -2 |
| 2395 | M = 4 |
| 2396 | ac = self.fastclip(a, m, M) |
| 2397 | act = self.clip(a, m, M) |
| 2398 | assert_array_strict_equal(ac, act) |
| 2399 | |
| 2400 | def test_array_double(self): |
| 2401 | # Test native double input with array min/max. |
nothing calls this directly
no test coverage detected