(self)
| 1909 | assert_array_strict_equal(ac, act) |
| 1910 | |
| 1911 | def test_array_double(self): |
| 1912 | # Test native double input with array min/max. |
| 1913 | a = self._generate_data(self.nr, self.nc) |
| 1914 | m = np.zeros(a.shape) |
| 1915 | M = m + 0.5 |
| 1916 | ac = self.fastclip(a, m, M) |
| 1917 | act = self.clip(a, m, M) |
| 1918 | assert_array_strict_equal(ac, act) |
| 1919 | |
| 1920 | def test_simple_nonnative(self): |
| 1921 | # Test non native double input with scalar min/max. |
nothing calls this directly
no test coverage detected