()
| 200 | |
| 201 | @pytest.fixture |
| 202 | def rectangle(): |
| 203 | return create_rectangle( |
| 204 | MPI.COMM_WORLD, |
| 205 | [np.array([0.0, 0.0]), np.array([2.0, 2.0])], |
| 206 | [5, 5], |
| 207 | CellType.triangle, |
| 208 | np.float64, |
| 209 | GhostMode.none, |
| 210 | ) |
| 211 | |
| 212 | |
| 213 | @pytest.fixture |
nothing calls this directly
no test coverage detected