(face, request)
| 493 | |
| 494 | @mark.parametrize("face", FACES) |
| 495 | def test_surface_positions(face, request): |
| 496 | |
| 497 | f = request.getfixturevalue(face) |
| 498 | surf = Surface.fromFace(f) |
| 499 | |
| 500 | for u in PARAMS: |
| 501 | for v in PARAMS: |
| 502 | assert np.allclose(f.positionAt(u, v).toTuple(), surf(u, v)) |
| 503 | |
| 504 | |
| 505 | @mark.parametrize("face", FACES) |
nothing calls this directly
no test coverage detected