We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99130d4 commit 7152e1dCopy full SHA for 7152e1d
tests/smoke_test.py
@@ -24,6 +24,22 @@ def test_nested_cubes():
24
assert len(surfaces) == 18
25
26
27
+def test_imprinted_assembly_mesh():
28
+ """
29
+ Tests to make sure that the imprinted assembly mesh works correctly with tagging.
30
31
+
32
+ # Create the basic assembly
33
+ assy = generate_test_cross_section()
34
35
+ # Convert eh assembly to an imprinted GMSH mesh
36
+ gmsh = assy.getImprintedGmsh()
37
38
+ # Make sure we have the correct number of surfaces
39
+ surfaces = gmsh.model.getEntities(2)
40
+ assert len(surfaces) == 56
41
42
43
def test_basic_assembly():
44
"""
45
Tests to make sure that the most basic assembly works correctly with tagging.
0 commit comments