()
| 78 | |
| 79 | |
| 80 | def test_wrong_method(): |
| 81 | |
| 82 | with pytest.raises(ValueError): |
| 83 | mcubes.smooth( |
| 84 | np.zeros((10, 10), dtype=np.bool_), |
| 85 | method='wrong', |
| 86 | max_iters=500, |
| 87 | rel_tol=1e-4 |
| 88 | ) |
| 89 | |
| 90 | |
| 91 | def test_circle(): |
nothing calls this directly
no outgoing calls
no test coverage detected