(self, c1)
| 100 | assert c1.f(test_radius) == pytest.approx(cf_value), ( |
| 101 | "Wrong cutoff function value.") |
| 102 | def test_nonfloat_argument(self, c1): |
| 103 | with pytest.raises(TypeError): |
| 104 | c1.f("a") |
| 105 | |
| 106 | class Test_df: |
| 107 | @pytest.mark.parametrize("cf_type", cutoff_function_types) |