from compass.landice.tests.isunnguata_sermia.mesh import Mesh
from compass.testcase import TestCase
[docs]
class MeshGen(TestCase):
"""
The MeshGen test case for the isunnguata_sermia test group simply
creates the mesh and initial condition.
"""
[docs]
def __init__(self, test_group):
"""
Create the test case
Parameters
----------
test_group : compass.landice.tests.isunnguata_sermia.IsunnguataSermia
The test group that this test case belongs to
"""
name = 'mesh_gen'
subdir = name
super().__init__(test_group=test_group, name=name,
subdir=subdir)
self.add_step(
Mesh(test_case=self))