(self, c1)
| 120 | assert c1.df(test_radius) == pytest.approx(cf_dvalue), ( |
| 121 | "Wrong cutoff derivative value.") |
| 122 | def test_nonfloat_argument(self, c1): |
| 123 | with pytest.raises(TypeError): |
| 124 | c1.df("a") |
| 125 | |
| 126 | class Test_fdf: |
| 127 | @pytest.mark.parametrize("cf_type", cutoff_function_types) |