Passed
Push — master ( 1e243f...b519bb )
by Björn
197:44 queued 153:47
created

tests.protocols.gmpv214.entities.test_scan_configs   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 125
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 62
dl 0
loc 125
rs 10
c 0
b 0
f 0
wmc 0
1
# -*- coding: utf-8 -*-
2
# Copyright (C) 2021 Greenbone Networks GmbH
3
#
4
# SPDX-License-Identifier: GPL-3.0-or-later
5
#
6
# This program is free software: you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation, either version 3 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19
from ...gmpv214 import Gmpv214TestCase
20
from ...gmpv208.entities.scan_configs import (
21
    GmpCloneScanConfigTestMixin,
22
    GmpCreateScanConfigTestMixin,
23
    GmpCreateScanConfigFromOSPScannerTestMixin,
24
    GmpDeleteScanConfigTestMixin,
25
    GmpGetScanConfigTestMixin,
26
    GmpGetScanConfigsTestMixin,
27
    GmpImportScanConfigTestMixin,
28
    GmpModifyScanConfigSetCommentTestMixin,
29
    GmpModifyScanConfigSetFamilySelectionTestMixin,
30
    GmpModifyScanConfigSetNameTestMixin,
31
    GmpModifyScanConfigSetNvtPreferenceTestMixin,
32
    GmpModifyScanConfigSetNvtSelectionTestMixin,
33
    GmpModifyScanConfigSetScannerPreferenceTestMixin,
34
    GmpModifyScanConfigTestMixin,
35
    GmpSyncScanConfigTestMixin,
36
)
37
38
39
class Gmpv214CloneScanConfigTestCase(
40
    GmpCloneScanConfigTestMixin, Gmpv214TestCase
41
):
42
    pass
43
44
45
class Gmpv214CreateScanConfigTestCase(
46
    GmpCreateScanConfigTestMixin, Gmpv214TestCase
47
):
48
    pass
49
50
51
class Gmpv214CreateScanConfigFromOSPScannerTestCase(
52
    GmpCreateScanConfigFromOSPScannerTestMixin, Gmpv214TestCase
53
):
54
    pass
55
56
57
class Gmpv214DeleteScanConfigTestCase(
58
    GmpDeleteScanConfigTestMixin, Gmpv214TestCase
59
):
60
    pass
61
62
63
class Gmpv214GetScanConfigTestCase(GmpGetScanConfigTestMixin, Gmpv214TestCase):
64
    pass
65
66
67
class Gmpv214GetScanConfigsTestCase(
68
    GmpGetScanConfigsTestMixin, Gmpv214TestCase
69
):
70
    pass
71
72
73
class Gmpv214ImportScanConfigTestCase(
74
    GmpImportScanConfigTestMixin, Gmpv214TestCase
75
):
76
    pass
77
78
79
class Gmpv214ModifyScanConfigSetCommentTestCase(
80
    GmpModifyScanConfigSetCommentTestMixin, Gmpv214TestCase
81
):
82
    pass
83
84
85
class Gmpv214ModifyScanConfigSetFamilySelectionTestCase(
86
    GmpModifyScanConfigSetFamilySelectionTestMixin, Gmpv214TestCase
87
):
88
    pass
89
90
91
class Gmpv214ModifyScanConfigSetNvtSelectionTestCase(
92
    GmpModifyScanConfigSetNvtSelectionTestMixin, Gmpv214TestCase
93
):
94
    pass
95
96
97
class Gmpv214ModifyScanConfigSetNameTestCase(
98
    GmpModifyScanConfigSetNameTestMixin, Gmpv214TestCase
99
):
100
    pass
101
102
103
class Gmpv214ModifyScanConfigSetNvtPreferenceTestCase(
104
    GmpModifyScanConfigSetNvtPreferenceTestMixin, Gmpv214TestCase
105
):
106
    pass
107
108
109
class Gmpv214ModifyScanConfigSetScannerPreferenceTestCase(
110
    GmpModifyScanConfigSetScannerPreferenceTestMixin, Gmpv214TestCase
111
):
112
    pass
113
114
115
class Gmpv214ModifyScanConfigTestCase(
116
    GmpModifyScanConfigTestMixin, Gmpv214TestCase
117
):
118
    pass
119
120
121
class Gmpv214SyncScanConfigTestCase(
122
    GmpSyncScanConfigTestMixin, Gmpv214TestCase
123
):
124
    pass
125