Source code for compass.landice.tests.mismipplus

from compass.testgroup import TestGroup
from compass.landice.tests.mismipplus.smoke_test import SmokeTest


[docs]class MISMIPplus(TestGroup): """ A test group for MISMIP+ test cases. This test group uses a pre-made mesh file. """
[docs] def __init__(self, mpas_core): """ mpas_core : compass.landice.Landice the MPAS core that this test group belongs to """ super().__init__(mpas_core=mpas_core, name='mismipplus') self.add_test_case(SmokeTest(test_group=self))