(self)
| 1899 | assert_array_strict_equal(ac, act) |
| 1900 | |
| 1901 | def test_simple_int(self): |
| 1902 | # Test native int input with scalar min/max. |
| 1903 | a = self._generate_int_data(self.nr, self.nc) |
| 1904 | a = a.astype(int) |
| 1905 | m = -2 |
| 1906 | M = 4 |
| 1907 | ac = self.fastclip(a, m, M) |
| 1908 | act = self.clip(a, m, M) |
| 1909 | assert_array_strict_equal(ac, act) |
| 1910 | |
| 1911 | def test_array_double(self): |
| 1912 | # Test native double input with array min/max. |
nothing calls this directly
no test coverage detected