你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 15:10:13 +08:00
29 行
661 B
Python
29 行
661 B
Python
from reframe_tests.tests.base_tests import GprMaxBaseTest
|
|
from reframe_tests.tests.mixins import (
|
|
GeometryObjectMixin,
|
|
GeometryOnlyMixin,
|
|
GeometryViewMixin,
|
|
ReceiverMixin,
|
|
SnapshotMixin,
|
|
)
|
|
|
|
|
|
class GprMaxRegressionTest(ReceiverMixin, GprMaxBaseTest):
|
|
pass
|
|
|
|
|
|
class GprMaxSnapshotTest(SnapshotMixin, GprMaxBaseTest):
|
|
pass
|
|
|
|
|
|
class GprMaxGeometryViewTest(GeometryViewMixin, GeometryOnlyMixin, GprMaxBaseTest):
|
|
pass
|
|
|
|
|
|
class GprMaxGeometryObjectTest(GeometryObjectMixin, GeometryOnlyMixin, GprMaxBaseTest):
|
|
pass
|
|
|
|
|
|
class GprMaxGeometryTest(GeometryObjectMixin, ReceiverMixin, GprMaxBaseTest):
|
|
geometry_objects = ["full_volume"]
|