(self, c1, cf_type, cf_value)
| 96 | @pytest.mark.parametrize("cf_type, cf_value", |
| 97 | zip(cutoff_function_types, cutoff_function_values)) |
| 98 | def test_nonzero_radius(self, c1, cf_type, cf_value): |
| 99 | c1.setCutoffType(cf_type) |
| 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") |
nothing calls this directly
no test coverage detected