Skip to content

Commit f228901

Browse files
committed
Extend tests
1 parent d9d4913 commit f228901

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

tests/tree/test_safeguards.py

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,43 @@ def refine_mesh(mesh):
3030
mesh.refine_box(p1, p2, levels=5, finalize=False)
3131

3232

33-
PROPERTIES = ["h_gridded"]
33+
PROPERTIES = [
34+
"average_cell_to_face",
35+
"average_cell_to_face_x",
36+
"average_cell_to_face_y",
37+
"average_cell_to_face_z",
38+
"average_cell_vector_to_face",
39+
"boundary_edges",
40+
"boundary_face_outward_normals",
41+
"boundary_faces",
42+
"boundary_nodes",
43+
"cell_centers",
44+
"cell_volumes",
45+
"edge_lengths",
46+
"edges_x",
47+
"edges_y",
48+
"edges_z",
49+
"face_areas",
50+
"faces_x",
51+
"faces_y",
52+
"faces_z",
53+
"h_gridded",
54+
"hanging_edges_x",
55+
"hanging_edges_y",
56+
"hanging_edges_z",
57+
"hanging_faces_x",
58+
"hanging_faces_y",
59+
"hanging_faces_z",
60+
"hanging_nodes",
61+
"nodes",
62+
"project_edge_to_boundary_edge",
63+
"project_face_to_boundary_face",
64+
"project_node_to_boundary_node",
65+
"stencil_cell_gradient_x",
66+
"stencil_cell_gradient_y",
67+
"stencil_cell_gradient_z",
68+
"total_nodes",
69+
]
3470

3571

3672
class TestSafeGuards:

0 commit comments

Comments
 (0)