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