()
| 217 | |
| 218 | @pytest.fixture |
| 219 | def box(): |
| 220 | return create_box( |
| 221 | MPI.COMM_WORLD, |
| 222 | [np.array([0, 0, 0]), np.array([2, 2, 2])], |
| 223 | [2, 2, 5], |
| 224 | CellType.tetrahedron, |
| 225 | np.float64, |
| 226 | GhostMode.none, |
| 227 | ) |
| 228 | |
| 229 | |
| 230 | @pytest.fixture |
nothing calls this directly
no test coverage detected