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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
# SPDX-FileCopyrightText: 2023-2024 Greenbone AG
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
from ...gmpv224.entities.scan_configs import (
GmpCloneScanConfigTestMixin,
GmpCreateScanConfigTestMixin,
GmpDeleteScanConfigTestMixin,
GmpGetScanConfigsTestMixin,
GmpGetScanConfigTestMixin,
GmpImportScanConfigTestMixin,
GmpModifyScanConfigSetCommentTestMixin,
GmpModifyScanConfigSetFamilySelectionTestMixin,
GmpModifyScanConfigSetNameTestMixin,
GmpModifyScanConfigSetNvtPreferenceTestMixin,
GmpModifyScanConfigSetNvtSelectionTestMixin,
GmpModifyScanConfigSetScannerPreferenceTestMixin,
)
from ...gmpv225 import GMPTestCase
class Gmpv225CloneScanConfigTestCase(GmpCloneScanConfigTestMixin, GMPTestCase):
pass
class Gmpv225CreateScanConfigTestCase(
GmpCreateScanConfigTestMixin, GMPTestCase
):
pass
class Gmpv225DeleteScanConfigTestCase(
GmpDeleteScanConfigTestMixin, GMPTestCase
):
pass
class Gmpv225GetScanConfigTestCase(GmpGetScanConfigTestMixin, GMPTestCase):
pass
class Gmpv225GetScanConfigsTestCase(GmpGetScanConfigsTestMixin, GMPTestCase):
pass
class Gmpv225ImportScanConfigTestCase(
GmpImportScanConfigTestMixin, GMPTestCase
):
pass
class Gmpv225ModifyScanConfigSetCommentTestCase(
GmpModifyScanConfigSetCommentTestMixin, GMPTestCase
):
pass
class Gmpv225ModifyScanConfigSetFamilySelectionTestCase(
GmpModifyScanConfigSetFamilySelectionTestMixin, GMPTestCase
):
pass
class Gmpv225ModifyScanConfigSetNvtSelectionTestCase(
GmpModifyScanConfigSetNvtSelectionTestMixin, GMPTestCase
):
pass
class Gmpv225ModifyScanConfigSetNameTestCase(
GmpModifyScanConfigSetNameTestMixin, GMPTestCase
):
pass
class Gmpv225ModifyScanConfigSetNvtPreferenceTestCase(
GmpModifyScanConfigSetNvtPreferenceTestMixin, GMPTestCase
):
pass
class Gmpv225ModifyScanConfigSetScannerPreferenceTestCase(
GmpModifyScanConfigSetScannerPreferenceTestMixin, GMPTestCase
):
pass
|