1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
# SPDX-FileCopyrightText: 2021-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
from ...gmpv224 import Gmpv224TestCase
from .port_lists import (
GmpClonePortListTestMixin,
GmpCreatePortListTestMixin,
GmpCreatePortRangeTestMixin,
GmpDeletePortListTestMixin,
GmpDeletePortRangeTestMixin,
GmpGetPortListsTestMixin,
GmpGetPortListTestMixin,
GmpModifyPortListTestMixin,
)
class Gmpv224ClonePortListTestCase(GmpClonePortListTestMixin, Gmpv224TestCase):
pass
class Gmpv224CreatePortListTestCase(
GmpCreatePortListTestMixin, Gmpv224TestCase
):
pass
class Gmpv224CreatePortRangeListTestCase(
GmpCreatePortRangeTestMixin, Gmpv224TestCase
):
pass
class Gmpv224DeletePortListTestCase(
GmpDeletePortListTestMixin, Gmpv224TestCase
):
pass
class Gmpv224DeletePortRangeTestCase(
GmpDeletePortRangeTestMixin, Gmpv224TestCase
):
pass
class Gmpv224GetPortListTestCase(GmpGetPortListTestMixin, Gmpv224TestCase):
pass
class Gmpv224GetPortListsTestCase(GmpGetPortListsTestMixin, Gmpv224TestCase):
pass
class Gmpv224ModifyPortListTestCase(
GmpModifyPortListTestMixin, Gmpv224TestCase
):
pass
|